2008-06-17 20:57:04 +08:00
|
|
|
--- a/drivers/net/au1000_eth.c
|
|
|
|
+++ b/drivers/net/au1000_eth.c
|
2008-11-07 16:44:56 +08:00
|
|
|
@@ -1306,9 +1306,12 @@ static void set_rx_mode(struct net_devic
|
2007-07-25 05:11:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+#define AU1000_KNOWN_PHY_IOCTLS (SIOCGMIIPHY & 0xfff0)
|
2007-07-24 17:15:20 +08: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 05:11:28 +08:00
|
|
|
+ if((cmd & AU1000_KNOWN_PHY_IOCTLS) != AU1000_KNOWN_PHY_IOCTLS)
|
|
|
|
+ return -EINVAL;
|
2007-07-24 17:15:20 +08:00
|
|
|
|
|
|
|
if (!netif_running(dev)) return -EINVAL;
|
|
|
|
|