From: Greg Kroah-Hartman Date: Wed, 11 Mar 2009 20:51:42 +0000 (-0700) Subject: USB: usbtmc: add protocol 1 support X-Git-Tag: upstream/snapshot3+hdmi~19973^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=228dd05dbfdd0fced8ab1a28ed73b500ba6bb0a6;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git USB: usbtmc: add protocol 1 support The driver already supports the 1 protocol support, so just add it to the MODULE_DEVICE_TABLE entry so it properly picks up these devices. Thanks to Jouni Rynö for pointing this out. Reported-by: Jouni Ryno Cc: stable Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/class/usbtmc.c b/drivers/usb/class/usbtmc.c index 895a098..c40a9b2 100644 --- a/drivers/usb/class/usbtmc.c +++ b/drivers/usb/class/usbtmc.c @@ -50,6 +50,7 @@ static struct usb_device_id usbtmc_devices[] = { { USB_INTERFACE_INFO(USB_CLASS_APP_SPEC, 3, 0), }, + { USB_INTERFACE_INFO(USB_CLASS_APP_SPEC, 3, 1), }, { 0, } /* terminating entry */ }; MODULE_DEVICE_TABLE(usb, usbtmc_devices);