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
nexedi
linux
Commits
f604a198
Commit
f604a198
authored
Jan 29, 2005
by
Vojtech Pavlik
Browse files
Options
Browse Files
Download
Plain Diff
Merge silver.ucw.cz:/home/vojtech/bk/linus
into silver.ucw.cz:/home/vojtech/bk/input
parents
842ca9a3
e51d0170
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
Documentation/kernel-parameters.txt
Documentation/kernel-parameters.txt
+7
-3
drivers/input/serio/i8042.c
drivers/input/serio/i8042.c
+3
-2
drivers/usb/input/hid-input.c
drivers/usb/input/hid-input.c
+3
-0
No files found.
Documentation/kernel-parameters.txt
View file @
f604a198
...
...
@@ -226,15 +226,19 @@ running once the system is up.
atascsi= [HW,SCSI] Atari SCSI
atkbd.extra= [HW] Enable extra LEDs and keys on IBM RapidAccess,
EzKey
and similar keyboards
atkbd.extra= [HW] Enable extra LEDs and keys on IBM RapidAccess,
EzKey
and similar keyboards
atkbd.reset= [HW] Reset keyboard during initialization
atkbd.set= [HW] Select keyboard code set
Format: <int> (2 = AT (default) 3 = PS/2)
atkbd.scroll= [HW] Enable scroll wheel on MS Office and similar keyboards
atkbd.scroll= [HW] Enable scroll wheel on MS Office and similar
keyboards
atkbd.softraw= [HW] Choose between synthetic and real raw mode
Format: <bool> (0 = real, 1 = synthetic (default))
atkbd.softrepeat=
[HW] Use software keyboard repeat
...
...
drivers/input/serio/i8042.c
View file @
f604a198
...
...
@@ -482,7 +482,7 @@ static int i8042_set_mux_mode(unsigned int mode, unsigned char *mux_version)
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
!=
0x0f
)
return
-
1
;
param
=
mode
?
0x56
:
0xf6
;
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
!=
0xa9
)
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
!=
(
mode
?
0xa9
:
0x09
)
)
return
-
1
;
param
=
mode
?
0xa4
:
0xa5
;
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
==
(
mode
?
0x5b
:
0x5a
))
...
...
@@ -787,7 +787,8 @@ void i8042_controller_reset(void)
* Disable MUX mode if present.
*/
i8042_set_mux_mode
(
0
,
NULL
);
if
(
i8042_mux_present
)
i8042_set_mux_mode
(
0
,
NULL
);
/*
* Restore the original control register setting.
...
...
drivers/usb/input/hid-input.c
View file @
f604a198
...
...
@@ -492,6 +492,9 @@ static int hidinput_input_event(struct input_dev *dev, unsigned int type, unsign
if
(
type
==
EV_FF
)
return
hid_ff_event
(
hid
,
dev
,
type
,
code
,
value
);
if
(
type
!=
EV_LED
)
return
-
1
;
if
((
offset
=
hid_find_field
(
hid
,
type
,
code
,
&
field
))
==
-
1
)
{
warn
(
"event field not found"
);
return
-
1
;
...
...
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