Prev: Fix a race in pid generation that causes pids to be reused immediately.
Next: [patch] sata_sil24: memset() overflow
From: Tanguy PRUVOT on 9 Jun 2010 08:10 Add support for PL2501 Host to Host USB 2.0 Device. Device is fully compatible with existing PL2301/2302 driver. Tested on ARM 2.6.24 and x86 2.6.35-rc2. Signed-off-by: Tanguy Pruvot <tanguy.pruvot(a)gmail.com> --- diff --git a/drivers/net/usb/plusb.c b/drivers/net/usb/plusb.c index 08555f8..f88392f 100644 --- a/drivers/net/usb/plusb.c +++ b/drivers/net/usb/plusb.c @@ -117,6 +117,9 @@ static const struct usb_device_id � products [] = { �}, { �� � � �USB_DEVICE(0x067b, 0x0001), � � // PL-2302 �� � � �.driver_info = �(unsigned long) &prolific_info, +}, { + � � � USB_DEVICE(0x067b, 0x2501), � � // PL-2501 + � � � .driver_info = �(unsigned long) &prolific_info, �}, �� � � �{ }, � � � � � �// END -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |