aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/au1000/patches-3.18/003-au1000_eth_ioctl.patch
diff options
context:
space:
mode:
authorStijn Tintel <stijn@linux-ipv6.be>2016-08-14 23:45:40 +0300
committerJohn Crispin <john@phrozen.org>2016-08-15 15:32:37 +0200
commitfa5eab6ec5c78160f939d23b24a6fd9a45861ca9 (patch)
tree926faaf618656cb23657e34cd439448c4a07bfb7 /target/linux/au1000/patches-3.18/003-au1000_eth_ioctl.patch
parent12cdf2bfc211f139c04aa4242ce1f8ffea6344d2 (diff)
downloadupstream-fa5eab6ec5c78160f939d23b24a6fd9a45861ca9.tar.gz
upstream-fa5eab6ec5c78160f939d23b24a6fd9a45861ca9.tar.bz2
upstream-fa5eab6ec5c78160f939d23b24a6fd9a45861ca9.zip
au1000: rename patches directory to patches-3.18
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'target/linux/au1000/patches-3.18/003-au1000_eth_ioctl.patch')
-rw-r--r--target/linux/au1000/patches-3.18/003-au1000_eth_ioctl.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/au1000/patches-3.18/003-au1000_eth_ioctl.patch b/target/linux/au1000/patches-3.18/003-au1000_eth_ioctl.patch
new file mode 100644
index 0000000000..590d8c217d
--- /dev/null
+++ b/target/linux/au1000/patches-3.18/003-au1000_eth_ioctl.patch
@@ -0,0 +1,16 @@
+--- a/drivers/net/ethernet/amd/au1000_eth.c
++++ b/drivers/net/ethernet/amd/au1000_eth.c
+@@ -1113,10 +1113,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;