summaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorVladimir Shebordaev2007-09-07 03:32:16 +0200
committerDmitry Torokhov2007-09-07 03:32:16 +0200
commit7b6dff982b063b1b15c30508f16863e5449e7229 (patch)
tree5780d359eec12eedad72cf51de2d0c7690e29b0a /drivers/input
parentInput: i8042 - add HP Pavilion DV4270ca to the MUX blacklist (diff)
downloadkernel-qcow2-linux-7b6dff982b063b1b15c30508f16863e5449e7229.tar.gz
kernel-qcow2-linux-7b6dff982b063b1b15c30508f16863e5449e7229.tar.xz
kernel-qcow2-linux-7b6dff982b063b1b15c30508f16863e5449e7229.zip
Input: usbtouchscreen - correctly set 'phys'
This patch fixes a nasty typo in usbtouchscreen driver. The typo is inherited from the original mtouchusb. It used to make the input subsytem to incorrectly report the physical device ids to userspace that in turn is very confusing for, e.g. XInput hotplug facilities in setups with multiple identical touchscreens. Signed-off-by: Vladimir Shebordaev <vshebordaev@mail.ru> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/touchscreen/usbtouchscreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/usbtouchscreen.c b/drivers/input/touchscreen/usbtouchscreen.c
index b407028ffc59..741f6c6f1e50 100644
--- a/drivers/input/touchscreen/usbtouchscreen.c
+++ b/drivers/input/touchscreen/usbtouchscreen.c
@@ -767,7 +767,7 @@ static int usbtouch_probe(struct usb_interface *intf,
le16_to_cpu(udev->descriptor.idProduct));
usb_make_path(udev, usbtouch->phys, sizeof(usbtouch->phys));
- strlcpy(usbtouch->phys, "/input0", sizeof(usbtouch->phys));
+ strlcat(usbtouch->phys, "/input0", sizeof(usbtouch->phys));
input_dev->name = usbtouch->name;
input_dev->phys = usbtouch->phys;