2008-06-17 15:57:04 +03:00
|
|
|
--- a/drivers/net/au1000_eth.c
|
|
|
|
+++ b/drivers/net/au1000_eth.c
|
2008-11-07 10:44:56 +02:00
|
|
|
@@ -1306,9 +1306,12 @@ static void set_rx_mode(struct net_devic
|
2007-07-25 00:11:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+#define AU1000_KNOWN_PHY_IOCTLS (SIOCGMIIPHY & 0xfff0)
|
2007-07-24 12:15:20 +03:00
|
|
|
static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
|
|
|
{
|
|
|
|
struct au1000_private *aup = (struct au1000_private *)dev->priv;
|
2007-07-25 00:11:28 +03:00
|
|
|
+ if((cmd & AU1000_KNOWN_PHY_IOCTLS) != AU1000_KNOWN_PHY_IOCTLS)
|
|
|
|
+ return -EINVAL;
|
2007-07-24 12:15:20 +03:00
|
|
|
|
|
|
|
if (!netif_running(dev)) return -EINVAL;
|
|
|
|
|