Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 342055
b: refs/heads/master
c: 4066363
h: refs/heads/master
i:
  342053: f824f3b
  342051: a7afa43
  342047: 644a3c9
v: v3
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Dec 9, 2012
1 parent 2990a08 commit 532e934
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d73bcd2c28e3c77d9f52d42a45a52455488e287e
refs/heads/master: 406636340c301b46062b22f94e3815ef767bd6a3
7 changes: 5 additions & 2 deletions trunk/net/caif/caif_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ static int cfusbl_device_notify(struct notifier_block *me, unsigned long what,
struct net_device *dev = arg;
struct caif_dev_common common;
struct cflayer *layer, *link_support;
struct usbnet *usbnet = netdev_priv(dev);
struct usb_device *usbdev = usbnet->udev;
struct usbnet *usbnet;
struct usb_device *usbdev;
struct ethtool_drvinfo drvinfo;

/*
Expand All @@ -141,6 +141,9 @@ static int cfusbl_device_notify(struct notifier_block *me, unsigned long what,
if (strncmp(drvinfo.driver, "cdc_ncm", 7) != 0)
return 0;

usbnet = netdev_priv(dev);
usbdev = usbnet->udev;

pr_debug("USB CDC NCM device VID:0x%4x PID:0x%4x\n",
le16_to_cpu(usbdev->descriptor.idVendor),
le16_to_cpu(usbdev->descriptor.idProduct));
Expand Down

0 comments on commit 532e934

Please sign in to comment.