Skip to content

Commit

Permalink
HID: usbkbd: fix inconsistent debugging output
Browse files Browse the repository at this point in the history
It looks like this typo was introduced by a mistake in a copy-and-paste in
commit ddbe324.

Signed-off-by: Adam Cozzette <acozzette@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Adam Cozzette authored and Jiri Kosina committed Nov 19, 2013
1 parent e0da5c9 commit 9fee824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/hid/usbhid/usbkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ static void usb_kbd_irq(struct urb *urb)
input_report_key(kbd->dev, usb_kbd_keycode[kbd->new[i]], 1);
else
hid_info(urb->dev,
"Unknown key (scancode %#x) released.\n",
"Unknown key (scancode %#x) pressed.\n",
kbd->new[i]);
}
}
Expand Down

0 comments on commit 9fee824

Please sign in to comment.