aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-10-25 22:44:21 -0400
committerJiri Kosina <jkosina@suse.cz>2010-11-03 10:11:56 -0400
commit587d145200f26758940099fbbc301fdd43d3f391 (patch)
tree9ae6f5669fa1e61c5d85011b919c02125f1ba6d8
parent229aebb873e29726b91e076161649cf45154b0bf (diff)
HID: Remove KERN_DEBUG from dbg_hid use
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--drivers/hid/hid-input.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
index 834ef47b76d..76e1f64e976 100644
--- a/drivers/hid/hid-input.c
+++ b/drivers/hid/hid-input.c
@@ -136,7 +136,8 @@ static int hidinput_setkeycode(struct input_dev *dev,
136 136
137 clear_bit(old_keycode, dev->keybit); 137 clear_bit(old_keycode, dev->keybit);
138 set_bit(usage->code, dev->keybit); 138 set_bit(usage->code, dev->keybit);
139 dbg_hid(KERN_DEBUG "Assigned keycode %d to HID usage code %x\n", keycode, scancode); 139 dbg_hid("Assigned keycode %d to HID usage code %x\n",
140 keycode, scancode);
140 /* Set the keybit for the old keycode if the old keycode is used 141 /* Set the keybit for the old keycode if the old keycode is used
141 * by another key */ 142 * by another key */
142 if (hidinput_find_key (hid, 0, old_keycode)) 143 if (hidinput_find_key (hid, 0, old_keycode))