diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-08-09 20:07:02 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-08-09 20:07:02 +0000 |
commit | 9a4baf0e195ab4eca01506197398fc40dd3a06f0 (patch) | |
tree | 548865d73b0839a490f39b6d7eb138a9d934d16f /target/linux/au1000/patches-2.6.35/003-au1000_eth_ioctl.patch | |
parent | ce8ff92de00c7e07eae03de8ee3ac32ca2655db2 (diff) | |
download | master-187ad058-9a4baf0e195ab4eca01506197398fc40dd3a06f0.tar.gz master-187ad058-9a4baf0e195ab4eca01506197398fc40dd3a06f0.tar.bz2 master-187ad058-9a4baf0e195ab4eca01506197398fc40dd3a06f0.zip |
[au1000] add support for 2.6.35
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22568 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/au1000/patches-2.6.35/003-au1000_eth_ioctl.patch')
-rw-r--r-- | target/linux/au1000/patches-2.6.35/003-au1000_eth_ioctl.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/au1000/patches-2.6.35/003-au1000_eth_ioctl.patch b/target/linux/au1000/patches-2.6.35/003-au1000_eth_ioctl.patch new file mode 100644 index 0000000000..570455c38b --- /dev/null +++ b/target/linux/au1000/patches-2.6.35/003-au1000_eth_ioctl.patch @@ -0,0 +1,17 @@ +--- a/drivers/net/au1000_eth.c ++++ b/drivers/net/au1000_eth.c +@@ -994,10 +994,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; + |