From 57c8c1da72ba3b5110d50db36f7dec4155496e52 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 23 Nov 2014 13:54:28 +0000 Subject: ar71xx: remove linux 3.10 support Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43344 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...-net-phy-add-phy_mmd_read_write-functions.patch | 40 ---------------------- 1 file changed, 40 deletions(-) delete mode 100644 target/linux/ar71xx/patches-3.10/424-net-phy-add-phy_mmd_read_write-functions.patch (limited to 'target/linux/ar71xx/patches-3.10/424-net-phy-add-phy_mmd_read_write-functions.patch') diff --git a/target/linux/ar71xx/patches-3.10/424-net-phy-add-phy_mmd_read_write-functions.patch b/target/linux/ar71xx/patches-3.10/424-net-phy-add-phy_mmd_read_write-functions.patch deleted file mode 100644 index 6b69679ed2..0000000000 --- a/target/linux/ar71xx/patches-3.10/424-net-phy-add-phy_mmd_read_write-functions.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- a/drivers/net/phy/phy.c -+++ b/drivers/net/phy/phy.c -@@ -1009,6 +1009,12 @@ static int phy_read_mmd_indirect(struct - return ret; - } - -+int phy_read_mmd(struct phy_device *phydev, int prtad, int devad, int addr) -+{ -+ return phy_read_mmd_indirect(phydev->bus, prtad, devad, phydev->addr); -+} -+EXPORT_SYMBOL(phy_read_mmd); -+ - /** - * phy_write_mmd_indirect - writes data to the MMD registers - * @bus: the target MII bus -@@ -1034,6 +1040,12 @@ static void phy_write_mmd_indirect(struc - bus->write(bus, addr, MII_MMD_DATA, data); - } - -+void phy_write_mmd(struct phy_device *phydev, int prtad, int devad, u16 data) -+{ -+ phy_write_mmd_indirect(phydev->bus, prtad, devad, phydev->addr, data); -+} -+EXPORT_SYMBOL(phy_write_mmd); -+ - /** - * phy_init_eee - init and check the EEE feature - * @phydev: target phy_device struct ---- a/include/linux/phy.h -+++ b/include/linux/phy.h -@@ -580,6 +580,9 @@ int phy_register_fixup_for_uid(u32 phy_u - int (*run)(struct phy_device *)); - int phy_scan_fixups(struct phy_device *phydev); - -+int phy_read_mmd(struct phy_device *phydev, int prtad, int devad, int addr); -+void phy_write_mmd(struct phy_device *phydev, int prtad, int devad, u16 data); -+ - int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable); - int phy_get_eee_err(struct phy_device *phydev); - int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data); -- cgit v1.2.3