Signed-off-by: Heiko Bauke <heiko.bauke@xxxxxxx> --- drivers/net/usb/plusb.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/net/usb/plusb.c b/drivers/net/usb/plusb.c index 22e1a9a..104fc10 100644 --- a/drivers/net/usb/plusb.c +++ b/drivers/net/usb/plusb.c @@ -102,7 +102,7 @@ static int pl_reset(struct usbnet *dev) } static const struct driver_info prolific_info = { - .description = "Prolific PL-2301/PL-2302/PL-25A1", + .description = "Prolific PL-2301/PL-2302/PL-2501/PL-25A1", .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT, /* some PL-2302 versions seem to fail usb_set_interface() */ .reset = pl_reset, @@ -129,6 +129,9 @@ static const struct usb_device_id products [] = { /* high speed cables */ { + USB_DEVICE(0x067b, 0x2501), /* PL-2501 */ + .driver_info = (unsigned long) &prolific_info, +}, { USB_DEVICE(0x067b, 0x25a1), /* PL-25A1, no eeprom */ .driver_info = (unsigned long) &prolific_info, }, { @@ -158,5 +161,5 @@ static struct usb_driver plusb_driver = { module_usb_driver(plusb_driver); MODULE_AUTHOR("David Brownell"); -MODULE_DESCRIPTION("Prolific PL-2301/2302/25A1 USB Host to Host Link Driver"); +MODULE_DESCRIPTION("Prolific PL-2301/2302/2501/25A1 USB Host to Host Link Driver"); MODULE_LICENSE("GPL"); -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html