summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Hlusiak <saschahlusiak@arcor.de>2008-04-09 15:09:46 +0200
committerSascha Hlusiak <saschahlusiak@arcor.de>2008-04-09 15:09:46 +0200
commitc3e3fb8795c19a292ca37ab4d67b308fbb20911b (patch)
tree69e37ab9269f5f04392069eed754f60fe0b1ae96
parentedcc8c26dfa3f89672a66c47665d89c7c9200b13 (diff)
Display evdev bus/vendor/product/version in separate line
-rw-r--r--src/backend_evdev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend_evdev.c b/src/backend_evdev.c
index 5f34394..231bc2d 100644
--- a/src/backend_evdev.c
+++ b/src/backend_evdev.c
@@ -176,9 +176,9 @@ jstkOpenDevice_evdev(JoystickDevPtr joystick)
if (ioctl(joystick->fd, EVIOCGUNIQ(sizeof(uniq)), uniq) == -1)
strcpy(uniq, "No name");
- xf86Msg(X_INFO, "Joystick: %s. %d axes, %d buttons.\n", name, axes, buttons);
- xf86Msg(X_INFO, "Joystick: bus 0x%x vendor 0x%x product 0x%x version 0x%x\n",
- id.bustype, id.vendor, id.product, id.version);
+ xf86Msg(X_INFO, "Joystick: %s. bus 0x%x vendor 0x%x product 0x%x version 0x%x\n",
+ name, id.bustype, id.vendor, id.product, id.version);
+ xf86Msg(X_INFO, "Joystick: found %d axes, %d buttons\n", axes, buttons);
joystick->read_proc = jstkReadData_evdev;
joystick->close_proc = jstkCloseDevice_evdev;