Netdev List
 help / color / mirror / Atom feed
* [PATCH] Au1000 eth : fix ioctl handling
@ 2007-07-24  9:15 Florian Fainelli
  0 siblings, 0 replies; only message in thread
From: Florian Fainelli @ 2007-07-24  9:15 UTC (permalink / raw)
  To: netdev


[-- Attachment #1.1: Type: text/plain, Size: 167 bytes --]

Hi all,

This patch fixes the handling of unsupported ioctls with the au1000_eth 
driver.

Signed-off-by: Florian Fainelli <florian.fainelli@telecomint.eu>
-- 

[-- Attachment #1.2: au1000_eth_ioctl.patch --]
[-- Type: text/plain, Size: 818 bytes --]

diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c
index c27cfce..99a1c61 100644
--- a/drivers/net/au1000_eth.c
+++ b/drivers/net/au1000_eth.c
@@ -1316,12 +1316,20 @@ static void set_rx_mode(struct net_device *dev)
 static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
 {
 	struct au1000_private *aup = (struct au1000_private *)dev->priv;
+	struct mii_ioctl_data *data = if_mii(rq);
+	int rc = -EOPNOTSUPP;
 
 	if (!netif_running(dev)) return -EINVAL;
 
 	if (!aup->phy_dev) return -EINVAL; // PHY not controllable
 
-	return phy_mii_ioctl(aup->phy_dev, if_mii(rq), cmd);
+	switch (cmd) {
+	default:
+		rc = phy_mii_ioctl(aup->phy_dev, data, cmd);
+		break;
+	}
+
+	return rc;
 }
 
 static struct net_device_stats *au1000_get_stats(struct net_device *dev)

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-07-24  9:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-24  9:15 [PATCH] Au1000 eth : fix ioctl handling Florian Fainelli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox