diff options
-rw-r--r-- | net/caif/caif_usb.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/caif/caif_usb.c b/net/caif/caif_usb.c index fd7cbf5aa895..582f80c8ef3d 100644 --- a/net/caif/caif_usb.c +++ b/net/caif/caif_usb.c | |||
@@ -126,8 +126,8 @@ static int cfusbl_device_notify(struct notifier_block *me, unsigned long what, | |||
126 | struct net_device *dev = arg; | 126 | struct net_device *dev = arg; |
127 | struct caif_dev_common common; | 127 | struct caif_dev_common common; |
128 | struct cflayer *layer, *link_support; | 128 | struct cflayer *layer, *link_support; |
129 | struct usbnet *usbnet = netdev_priv(dev); | 129 | struct usbnet *usbnet; |
130 | struct usb_device *usbdev = usbnet->udev; | 130 | struct usb_device *usbdev; |
131 | struct ethtool_drvinfo drvinfo; | 131 | struct ethtool_drvinfo drvinfo; |
132 | 132 | ||
133 | /* | 133 | /* |
@@ -141,6 +141,9 @@ static int cfusbl_device_notify(struct notifier_block *me, unsigned long what, | |||
141 | if (strncmp(drvinfo.driver, "cdc_ncm", 7) != 0) | 141 | if (strncmp(drvinfo.driver, "cdc_ncm", 7) != 0) |
142 | return 0; | 142 | return 0; |
143 | 143 | ||
144 | usbnet = netdev_priv(dev); | ||
145 | usbdev = usbnet->udev; | ||
146 | |||
144 | pr_debug("USB CDC NCM device VID:0x%4x PID:0x%4x\n", | 147 | pr_debug("USB CDC NCM device VID:0x%4x PID:0x%4x\n", |
145 | le16_to_cpu(usbdev->descriptor.idVendor), | 148 | le16_to_cpu(usbdev->descriptor.idVendor), |
146 | le16_to_cpu(usbdev->descriptor.idProduct)); | 149 | le16_to_cpu(usbdev->descriptor.idProduct)); |