-
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.
HID: move away from DEBUG defines in favor of CONFIG_HID_DEBUG
CONFIG_INPUT_DEBUG is non-existent option, so remove anything depending on it. Also, as we have new CONFIG_HID_DEBUG, this should be used on places where ifdef DEBUG was used before. Suggested by Adrian Bunk. Signed-off-by: Jiri Kosina <jkosina@suse.cz>
- Loading branch information
Jiri Kosina
committed
Feb 5, 2007
1 parent
43c7bf0
commit dd64c15
Showing
4 changed files
with
6 additions
and
22 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 |
---|---|---|
@@ -1,19 +1,8 @@ | ||
# | ||
# Makefile for the HID driver | ||
# | ||
|
||
# Multipart objects. | ||
hid-objs := hid-core.o hid-input.o | ||
|
||
# Optional parts of multipart objects. | ||
ifeq ($(CONFIG_HID_DEBUG),y) | ||
hid-objs += hid-debug.o | ||
endif | ||
|
||
ifeq ($(CONFIG_INPUT_DEBUG),y) | ||
EXTRA_CFLAGS += -DDEBUG | ||
endif | ||
|
||
hid-objs := hid-core.o hid-input.o | ||
|
||
obj-$(CONFIG_HID) += hid.o | ||
hid-$(CONFIG_HID_DEBUG) += hid-debug.o | ||
|
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