Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268256
b: refs/heads/master
c: f680751
h: refs/heads/master
v: v3
  • Loading branch information
Mark Einon authored and Greg Kroah-Hartman committed Sep 6, 2011
1 parent cde25f9 commit c133a61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 53 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: 303dfbf5727410bfa3e82d4e2554813f1e8f2de6
refs/heads/master: f6807514910f2d3c9d19e2cdd369a31aade73e6f
56 changes: 4 additions & 52 deletions trunk/drivers/staging/et131x/et131x_netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,47 +207,6 @@ int et131x_close(struct net_device *netdev)
return 0;
}

/**
* et131x_ioctl_mii - The function which handles MII IOCTLs
* @netdev: device on which the query is being made
* @reqbuf: the request-specific data buffer
* @cmd: the command request code
*
* Returns 0 on success, errno on failure (as defined in errno.h)
*/
int et131x_ioctl_mii(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
{
int status = 0;
struct et131x_adapter *adapter = netdev_priv(netdev);
struct mii_ioctl_data *data = if_mii(reqbuf);

switch (cmd) {
case SIOCGMIIPHY:
data->phy_id = adapter->stats.xcvr_addr;
break;

case SIOCGMIIREG:
if (!capable(CAP_NET_ADMIN))
status = -EPERM;
else
status = et131x_mii_read(adapter,
data->reg_num, &data->val_out);
break;

case SIOCSMIIREG:
if (!capable(CAP_NET_ADMIN))
status = -EPERM;
else
status = et131x_mii_write(adapter, data->reg_num,
data->val_in);
break;

default:
status = -EOPNOTSUPP;
}
return status;
}

/**
* et131x_ioctl - The I/O Control handler for the driver
* @netdev: device on which the control request is being made
Expand All @@ -258,19 +217,12 @@ int et131x_ioctl_mii(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
*/
int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
{
int status = 0;
struct et131x_adapter *adapter = netdev_priv(netdev);

switch (cmd) {
case SIOCGMIIPHY:
case SIOCGMIIREG:
case SIOCSMIIREG:
status = et131x_ioctl_mii(netdev, reqbuf, cmd);
break;
if (!adapter->phydev)
return -EINVAL;

default:
status = -EOPNOTSUPP;
}
return status;
return phy_mii_ioctl(adapter->phydev, reqbuf, cmd);
}

/**
Expand Down

0 comments on commit c133a61

Please sign in to comment.