Skip to content

Commit b71055b

Browse files
committed
Merge tag 'usb-3.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB fixes from Greg Kroah-Hartman: "Here are two USB patches for 3.10. One updates the Kconfig wording for CONFIG_USB_PHY to make it, hopefully, more obvious what this option is (I know you complained about this when it hit the tree.) The other is a new device id for a driver" * tag 'usb-3.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: USB: serial: ti_usb_3410_5052: new device id for Abbot strip port cable usb: phy: Improve Kconfig help for CONFIG_USB_PHY
2 parents dcfdc28 + 35a2fbc commit b71055b

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

drivers/usb/phy/Kconfig

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@
44
menuconfig USB_PHY
55
bool "USB Physical Layer drivers"
66
help
7-
USB controllers (those which are host, device or DRD) need a
8-
device to handle the physical layer signalling, commonly called
9-
a PHY.
7+
Most USB controllers have the physical layer signalling part
8+
(commonly called a PHY) built in. However, dual-role devices
9+
(a.k.a. USB on-the-go) which support being USB master or slave
10+
with the same connector often use an external PHY.
1011

11-
The following drivers add support for such PHY devices.
12+
The drivers in this submenu add support for such PHY devices.
13+
They are not needed for standard master-only (or the vast
14+
majority of slave-only) USB interfaces.
15+
16+
If you're not sure if this applies to you, it probably doesn't;
17+
say N here.
1218

1319
if USB_PHY
1420

drivers/usb/serial/ti_usb_3410_5052.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ static struct usb_device_id ti_id_table_3410[15+TI_EXTRA_VID_PID_COUNT+1] = {
172172
{ USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
173173
{ USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
174174
{ USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
175-
{ USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) },
175+
{ USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STEREO_PLUG_ID) },
176+
{ USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STRIP_PORT_ID) },
176177
{ USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
177178
};
178179

drivers/usb/serial/ti_usb_3410_5052.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@
5252

5353
/* Abbott Diabetics vendor and product ids */
5454
#define ABBOTT_VENDOR_ID0x1a61
55-
#define ABBOTT_PRODUCT_ID0x3410
55+
#define ABBOTT_STEREO_PLUG_ID0x3410
56+
#define ABBOTT_PRODUCT_IDABBOTT_STEREO_PLUG_ID
57+
#define ABBOTT_STRIP_PORT_ID0x3420
5658

5759
/* Commands */
5860
#define TI_GET_VERSION0x01

0 commit comments

Comments
 (0)