aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/pending-4.4/703-phy-add-detach-callback-to-struct-phy_driver.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2018-07-04 19:41:26 +0200
committerFelix Fietkau <nbd@nbd.name>2018-07-07 14:53:26 +0200
commitc3bdb89e61084278a598d5af15da274cada1ecc6 (patch)
treeb2c6e079000d62a03afe8175256082e5f2d56eed /target/linux/generic/pending-4.4/703-phy-add-detach-callback-to-struct-phy_driver.patch
parent1e6c30690ca902a69a727c925afaeccae8f85bcd (diff)
downloadupstream-c3bdb89e61084278a598d5af15da274cada1ecc6.tar.gz
upstream-c3bdb89e61084278a598d5af15da274cada1ecc6.tar.bz2
upstream-c3bdb89e61084278a598d5af15da274cada1ecc6.zip
kernel: remove linux 4.4 support
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/generic/pending-4.4/703-phy-add-detach-callback-to-struct-phy_driver.patch')
-rw-r--r--target/linux/generic/pending-4.4/703-phy-add-detach-callback-to-struct-phy_driver.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/target/linux/generic/pending-4.4/703-phy-add-detach-callback-to-struct-phy_driver.patch b/target/linux/generic/pending-4.4/703-phy-add-detach-callback-to-struct-phy_driver.patch
deleted file mode 100644
index 4ef3b781fa..0000000000
--- a/target/linux/generic/pending-4.4/703-phy-add-detach-callback-to-struct-phy_driver.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/drivers/net/phy/phy_device.c
-+++ b/drivers/net/phy/phy_device.c
-@@ -734,6 +734,9 @@ void phy_detach(struct phy_device *phyde
- struct mii_bus *bus;
- int i;
-
-+ if (phydev->drv && phydev->drv->detach)
-+ phydev->drv->detach(phydev);
-+
- phydev->attached_dev->phydev = NULL;
- phydev->attached_dev = NULL;
- phy_suspend(phydev);
---- a/include/linux/phy.h
-+++ b/include/linux/phy.h
-@@ -515,6 +515,12 @@ struct phy_driver {
- */
- int (*did_interrupt)(struct phy_device *phydev);
-
-+ /*
-+ * Called before an ethernet device is detached
-+ * from the PHY.
-+ */
-+ void (*detach)(struct phy_device *phydev);
-+
- /* Clears up any memory if needed */
- void (*remove)(struct phy_device *phydev);
-