diff options
author | sjur.brandeland@stericsson.com <sjur.brandeland@stericsson.com> | 2012-01-17 07:03:13 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-17 19:46:55 +0400 |
commit | 3371bb3f7ed11b7b7473a202e2713bde50dc01c0 (patch) | |
tree | 2ce6211c2fb744f51ab249f6a9802775709075f3 /net/caif | |
parent | 6ab48a5c86ce778188c173818cb2f1644526e962 (diff) | |
download | linux-3371bb3f7ed11b7b7473a202e2713bde50dc01c0.tar.xz |
caif: Fix typo in Vendor/Product-ID for CAIF modems
Fix typo for the Vendor/Product Id for ST-Ericsson CAIF modems.
Discovery is based on fixed USB vendor 0x04cc (ST-Ericsson),
product-id 0x230f (NCM).
Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/caif')
-rw-r--r-- | net/caif/caif_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/caif/caif_usb.c b/net/caif/caif_usb.c index 3d737fbcb182..fd7cbf5aa895 100644 --- a/net/caif/caif_usb.c +++ b/net/caif/caif_usb.c @@ -26,7 +26,7 @@ MODULE_LICENSE("GPL"); #define CFUSB_ALIGNMENT 4 /* Number of bytes to align. */ #define CFUSB_MAX_HEADLEN (CFUSB_PAD_DESCR_SZ + CFUSB_ALIGNMENT-1) #define STE_USB_VID 0x04cc /* USB Product ID for ST-Ericsson */ -#define STE_USB_PID_CAIF 0x2306 /* Product id for CAIF Modems */ +#define STE_USB_PID_CAIF 0x230f /* Product id for CAIF Modems */ struct cfusbl { struct cflayer layer; |