backports: fix header of phy_mii_ioctl()
authorHauke Mehrtens <hauke@hauke-m.de>
Sat, 18 Jan 2014 23:41:38 +0000 (00:41 +0100)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 19 Jan 2014 16:47:13 +0000 (17:47 +0100)
On kernel versions < 2.6.36 phy_mii_ioctl() gets struct mii_ioctl_data
as second parameter and on more recent kernel versions it takes struct
ifreq. This patch converts one version to the other.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
backport/backport-include/linux/phy.h

index 4473e4ed9bbf3de2bf1f48b58ebf5449e5a41ee4..ff2aacf16b04c565c0c912115146f4444e2585a0 100644 (file)
@@ -8,4 +8,14 @@
        phy_connect(dev, bus_id, handler, 0, interface)
 #endif
 
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36))
+#include <linux/mii.h>
+static inline int backport_phy_mii_ioctl(struct phy_device *phydev,
+                                        struct ifreq *ifr, int cmd)
+{
+       return phy_mii_ioctl(phydev, if_mii(ifr), cmd);
+}
+#define phy_mii_ioctl LINUX_BACKPORT(phy_mii_ioctl)
+#endif
+
 #endif /* __BACKPORT_LINUX_PHY_H */