Skip to content

Commit

Permalink
staging: gdm72xx: Set up parent link in sysfs for gdm72xx devices
Browse files Browse the repository at this point in the history
This patch uses SET_NETDEV_DEV to set up a 'device' parent link in sysfs
(e.g. /sys/class/net/wm0/device) for a gdm72xx device.

Signed-off-by: Paul Stewart <pstew@chromium.org>
Signed-off-by: Ben Chan <benchan@chromium.org>
Cc: Sage Ahn <syahn@gctsemi.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Paul Stewart authored and Greg Kroah-Hartman committed May 17, 2012
1 parent 3080b83 commit 54bc1ff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/gdm72xx/gdm_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ static void gdm_sdio_irq(struct sdio_func *func)
done:
sdio_writeb(func, 0x00, 0x10, &ret); /* PCRRT */
if (!phy_dev->netdev)
register_wimax_device(phy_dev);
register_wimax_device(phy_dev, &func->dev);
}

static int gdm_sdio_receive(void *priv_dev,
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/gdm72xx/gdm_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ static int gdm_usb_probe(struct usb_interface *intf,
INIT_WORK(&udev->pm_ws, do_pm_control);
#endif /* CONFIG_WIMAX_GDM72XX_USB_PM */

ret = register_wimax_device(phy_dev);
ret = register_wimax_device(phy_dev, &intf->dev);

out:
if (ret) {
Expand Down
3 changes: 2 additions & 1 deletion drivers/staging/gdm72xx/gdm_wimax.c
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ static struct net_device_ops gdm_netdev_ops = {
.ndo_do_ioctl = gdm_wimax_ioctl,
};

int register_wimax_device(struct phy_dev *phy_dev)
int register_wimax_device(struct phy_dev *phy_dev, struct device *pdev)
{
struct nic *nic = NULL;
struct net_device *dev;
Expand All @@ -957,6 +957,7 @@ int register_wimax_device(struct phy_dev *phy_dev)
return -ENOMEM;
}

SET_NETDEV_DEV(dev, pdev);
dev->mtu = 1400;
dev->netdev_ops = &gdm_netdev_ops;
dev->flags &= ~IFF_MULTICAST;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/gdm72xx/gdm_wimax.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ struct nic {

/*#define LOOPBACK_TEST */

extern int register_wimax_device(struct phy_dev *phy_dev);
extern int register_wimax_device(struct phy_dev *phy_dev, struct device *pdev);
extern int gdm_wimax_send_tx(struct sk_buff *skb, struct net_device *dev);
extern void unregister_wimax_device(struct phy_dev *phy_dev);

Expand Down

0 comments on commit 54bc1ff

Please sign in to comment.