aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-input.c
diff options
context:
space:
mode:
authorJiri Kosina <jkosina@suse.cz>2007-01-25 05:43:31 -0500
committerJiri Kosina <jkosina@suse.cz>2007-02-05 04:00:38 -0500
commitc080d89ad91e98fec0e8fc5f448a1ad899bd85c7 (patch)
tree169a03a0e8d16fe95e7d689dd9fa7775340d5dc4 /drivers/hid/hid-input.c
parent20eb12790670985c8e30821218993bd260387b89 (diff)
HID: hid debug from hid-debug.h to hid layer
hid-debug.h contains a lot of code, and should not therefore be a header. This patch moves the code to generic hid layer as .c source, and introduces CONFIG_HID_DEBUG to conditionally compile it, instead of playing with #define DEBUG and including hid-debug.h. Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-input.c')
-rw-r--r--drivers/hid/hid-input.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
index 33b1126f5e5d..ae298c4bfcbd 100644
--- a/drivers/hid/hid-input.c
+++ b/drivers/hid/hid-input.c
@@ -34,6 +34,7 @@
34#undef DEBUG 34#undef DEBUG
35 35
36#include <linux/hid.h> 36#include <linux/hid.h>
37#include <linux/hid-debug.h>
37 38
38static int hid_pb_fnmode = 1; 39static int hid_pb_fnmode = 1;
39module_param_named(pb_fnmode, hid_pb_fnmode, int, 0644); 40module_param_named(pb_fnmode, hid_pb_fnmode, int, 0644);
@@ -254,7 +255,7 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
254 255
255#ifdef DEBUG 256#ifdef DEBUG
256 printk(KERN_DEBUG "Mapping: "); 257 printk(KERN_DEBUG "Mapping: ");
257 resolv_usage(usage->hid); 258 hid_resolv_usage(usage->hid);
258 printk(" ---> "); 259 printk(" ---> ");
259#endif 260#endif
260 261
@@ -682,8 +683,8 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
682 field->dpad = usage->code; 683 field->dpad = usage->code;
683 } 684 }
684 685
685#ifdef DEBUG 686 hid_resolv_event(usage->type, usage->code);
686 resolv_event(usage->type, usage->code); 687#ifdef CONFIG_HID_DEBUG
687 printk("\n"); 688 printk("\n");
688#endif 689#endif
689 return; 690 return;