summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Ritz <daniel.ritz-ml@swissonline.ch>2006-11-03 22:59:28 +0000
committerChris Wright <chrisw@sous-sol.org>2006-11-18 19:28:01 -0800
commitb7d3dcaa7a0b39129ac089ab1a6d9179c0a7fb1b (patch)
tree14445bde38bcbe7f023bcdfab46eaf847bf39c75
parentfa4788169281af4b64d1fb077f6312fef535c184 (diff)
downloadlinux-stable-b7d3dcaa7a0b39129ac089ab1a6d9179c0a7fb1b.tar.gz
linux-stable-b7d3dcaa7a0b39129ac089ab1a6d9179c0a7fb1b.tar.bz2
linux-stable-b7d3dcaa7a0b39129ac089ab1a6d9179c0a7fb1b.zip
[PATCH] usbtouchscreen: use endpoint address from endpoint descriptor
use the endpoint address from the endpoint descriptor instead of the hardcoding it to 0x81. at least some ITM based screen use a different address and don't work without this. Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch> Cc: Ralf Lehmann <ralf@lehmann.cc> Cc: J.P. Delport <jpdelport@csir.co.za> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Chris Wright <chrisw@sous-sol.org>
-rw-r--r--drivers/usb/input/usbtouchscreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/input/usbtouchscreen.c b/drivers/usb/input/usbtouchscreen.c
index a338bf4c2d78..0f3adc4a91d3 100644
--- a/drivers/usb/input/usbtouchscreen.c
+++ b/drivers/usb/input/usbtouchscreen.c
@@ -522,7 +522,7 @@ static int usbtouch_probe(struct usb_interface *intf,
type->max_press, 0, 0);
usb_fill_int_urb(usbtouch->irq, usbtouch->udev,
- usb_rcvintpipe(usbtouch->udev, 0x81),
+ usb_rcvintpipe(usbtouch->udev, endpoint->bEndpointAddress),
usbtouch->data, type->rept_size,
usbtouch_irq, usbtouch, endpoint->bInterval);