summaryrefslogtreecommitdiff
path: root/target/linux/au1000/patches-3.3/003-au1000_eth_ioctl.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-05-27 15:01:15 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-05-27 15:01:15 +0000
commite065d5cfbe3ac53eb129aa81293321dc903bc445 (patch)
tree6573bbb1eb7e305a393522b0af6029be5ca3f90f /target/linux/au1000/patches-3.3/003-au1000_eth_ioctl.patch
parentde4c4d35e17830170dba6aa1b3b025d93a7b3302 (diff)
downloadmtk-20170518-e065d5cfbe3ac53eb129aa81293321dc903bc445.zip
mtk-20170518-e065d5cfbe3ac53eb129aa81293321dc903bc445.tar.gz
mtk-20170518-e065d5cfbe3ac53eb129aa81293321dc903bc445.tar.bz2
au1000: add support for 3.3
Compile tested only. SVN-Revision: 31892
Diffstat (limited to 'target/linux/au1000/patches-3.3/003-au1000_eth_ioctl.patch')
-rw-r--r--target/linux/au1000/patches-3.3/003-au1000_eth_ioctl.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/au1000/patches-3.3/003-au1000_eth_ioctl.patch b/target/linux/au1000/patches-3.3/003-au1000_eth_ioctl.patch
new file mode 100644
index 0000000..b97a439
--- /dev/null
+++ b/target/linux/au1000/patches-3.3/003-au1000_eth_ioctl.patch
@@ -0,0 +1,17 @@
+--- a/drivers/net/ethernet/amd/au1000_eth.c
++++ b/drivers/net/ethernet/amd/au1000_eth.c
+@@ -991,10 +991,14 @@ static void au1000_multicast_list(struct
+ writel(reg, &aup->mac->control);
+ }
+
++#define AU1000_KNOWN_PHY_IOCTLS (SIOCGMIIPHY & 0xfff0)
+ static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
+ {
+ struct au1000_private *aup = netdev_priv(dev);
+
++ if((cmd & AU1000_KNOWN_PHY_IOCTLS) != AU1000_KNOWN_PHY_IOCTLS)
++ return -EINVAL;
++
+ if (!netif_running(dev))
+ return -EINVAL;
+