diff mbox

[RFC] IXP4xx: Add PHYLIB MII ioctl to the Ethernet driver.

Message ID m3ocz6ba67.fsf@maximus.localdomain
State RFC, archived
Delegated to: David Miller
Headers show

Commit Message

Krzysztof Halasa Dec. 21, 2008, 1:15 a.m. UTC
Few patches I'm posting for review only.

Not for operational use.

IXP4xx: Add PHYLIB MII ioctl to the Ethernet driver.
diff mbox

Patch

--- a/drivers/net/arm/ixp4xx_eth.c
+++ b/drivers/net/arm/ixp4xx_eth.c
@@ -789,9 +789,11 @@  static void eth_set_mcast_list(struct net_device *dev)
 
 static int eth_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
 {
+	struct port *port = netdev_priv(dev);
+
 	if (!netif_running(dev))
 		return -EINVAL;
-	return -EINVAL;
+	return phy_mii_ioctl(port->phydev, if_mii(req), cmd);
 }