Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
29365575
Commit
29365575
authored
Oct 09, 2002
by
Vojtech Pavlik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the Shift-PgUp problem again, and hopefully for good.
parent
a9e3f964
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
drivers/input/serio/i8042.c
drivers/input/serio/i8042.c
+3
-3
drivers/input/serio/i8042.h
drivers/input/serio/i8042.h
+1
-1
No files found.
drivers/input/serio/i8042.c
View file @
29365575
...
...
@@ -161,7 +161,7 @@ static int i8042_command(unsigned char *param, int command)
param
[
i
]
=
~
i8042_read_data
();
else
param
[
i
]
=
i8042_read_data
();
dbg
(
"%02x <- i8042 (return)
\n
"
,
param
[
i
]);
dbg
(
"%02x <- i8042 (return)"
,
param
[
i
]);
}
spin_unlock_irqrestore
(
&
i8042_lock
,
flags
);
...
...
@@ -407,10 +407,10 @@ static void i8042_interrupt(int irq, void *dev_id, struct pt_regs *regs)
}
if
(
data
>
0x7f
)
{
if
(
i8042_last_e0
&&
(
data
==
0xaa
||
data
==
0xb6
))
set_bit
((
data
&
0x7f
)
|
(
i8042_last_e0
<<
7
),
i8042_unxlate_seen
);
if
(
test_and_clear_bit
((
data
&
0x7f
)
|
(
i8042_last_e0
<<
7
),
i8042_unxlate_seen
))
{
serio_interrupt
(
&
i8042_kbd_port
,
0xf0
,
dfl
);
if
(
i8042_last_e0
&&
(
data
==
0xaa
||
data
==
0xb6
))
set_bit
((
data
&
0x7f
)
|
(
i8042_last_e0
<<
7
),
i8042_unxlate_seen
);
data
=
i8042_unxlate_table
[
data
&
0x7f
];
}
}
else
{
...
...
drivers/input/serio/i8042.h
View file @
29365575
...
...
@@ -104,7 +104,7 @@
#ifdef DEBUG
static
unsigned
long
i8042_start
;
#define dbg_init() do { i8042_start = jiffies; } while (0);
#define dbg(format, arg...) printk(KERN_DEBUG __FILE__ ": " format "[%d]\n" ,\
#define dbg(format, arg...) printk(KERN_DEBUG __FILE__ ": " format "
[%d]\n" ,\
## arg, (int) (jiffies - i8042_start))
#else
#define dbg_init() do { } while (0);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment