forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This modifies Makefiles and Kconfigs to properly reflect the creation of generic HID layer. It also removes the dependency of BROKEN, which was introduced by the first patch in series (see the comment). Also updates credits. Signed-off-by: Jiri Kosina <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]> Cc: Dmitry Torokhov <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
Showing
8 changed files
with
51 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1808,6 +1808,14 @@ S: Kruislaan 419 | |
S: 1098 VA Amsterdam | ||
S: The Netherlands | ||
|
||
N: Jiri Kosina | ||
E: [email protected] | ||
E: [email protected] | ||
D: Generic HID layer - original code split, fixes | ||
D: Various ACPI fixes, keeping correct battery state through suspend | ||
D: various lockdep annotations, autofs and other random bugfixes | ||
S: Prague, Czech Republic | ||
|
||
N: Gene Kozin | ||
E: [email protected] | ||
W: http://www.sangoma.com | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# HID driver configuration | ||
# | ||
menu "HID Devices" | ||
depends on INPUT | ||
|
||
config HID | ||
tristate "Generic HID support" | ||
default y | ||
---help--- | ||
Say Y here if you want generic HID support to connect keyboards, | ||
mice, joysticks, graphic tablets, or any other HID based devices | ||
to your computer. You also need to select particular types of | ||
HID devices you want to compile support for, in the particular | ||
driver menu (USB, Bluetooth) | ||
|
||
endmenu | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# | ||
# Makefile for the HID driver | ||
# | ||
|
||
# Multipart objects. | ||
hid-objs := hid-core.o hid-input.o | ||
|
||
# Optional parts of multipart objects. | ||
|
||
obj-$(CONFIG_HID) += hid.o | ||
|
||
ifeq ($(CONFIG_INPUT_DEBUG),y) | ||
EXTRA_CFLAGS += -DDEBUG | ||
endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters