Skip to content

Commit

Permalink
HID: add missing RX, RZ and RY enum values to hid-debug output
Browse files Browse the repository at this point in the history
This trivial change adds some missing enum values to the hid-debug output.

Signed-off-by: Simon Budig <simon@budig.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Simon Budig authored and Jiri Kosina committed Jan 21, 2007
1 parent 1f3ab01 commit f7ebf99
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions include/linux/hid-debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -700,9 +700,10 @@ static char *keys[KEY_MAX + 1] = {

static char *relatives[REL_MAX + 1] = {
[REL_X] = "X", [REL_Y] = "Y",
[REL_Z] = "Z", [REL_HWHEEL] = "HWheel",
[REL_DIAL] = "Dial", [REL_WHEEL] = "Wheel",
[REL_MISC] = "Misc",
[REL_Z] = "Z", [REL_RX] = "Rx",
[REL_RY] = "Ry", [REL_RZ] = "Rz",
[REL_HWHEEL] = "HWheel", [REL_DIAL] = "Dial",
[REL_WHEEL] = "Wheel", [REL_MISC] = "Misc",
};

static char *absolutes[ABS_MAX + 1] = {
Expand Down

0 comments on commit f7ebf99

Please sign in to comment.