aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2014-05-08 21:52:40 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2014-05-08 21:52:40 +0000
commitff12bcef16abb63d66aa75235c2def3d605e24d3 (patch)
treee801888d9acea3d791db7288762f43ef68ddaeb7 /target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch
parent100e795bccaccd50aa9ad3835fc293b241f28b07 (diff)
downloadupstream-ff12bcef16abb63d66aa75235c2def3d605e24d3.tar.gz
upstream-ff12bcef16abb63d66aa75235c2def3d605e24d3.tar.bz2
upstream-ff12bcef16abb63d66aa75235c2def3d605e24d3.zip
kernel: fix some compile warnings with kernel 3.14
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 40734
Diffstat (limited to 'target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch')
-rw-r--r--target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch8
1 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch b/target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch
index 9d6da7b185..d634647ddb 100644
--- a/target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch
+++ b/target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch
@@ -33,13 +33,17 @@
if (status < 0)
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
-@@ -99,6 +99,9 @@ static int phy_config_interrupt(struct p
+@@ -99,7 +99,12 @@ static int phy_config_interrupt(struct p
*/
static inline int phy_aneg_done(struct phy_device *phydev)
{
+- int retval = phy_read(phydev, MII_BMSR);
++ int retval;
++
+ if (phydev->drv->aneg_done)
+ return phydev->drv->aneg_done(phydev);
+
- int retval = phy_read(phydev, MII_BMSR);
++ retval = phy_read(phydev, MII_BMSR);
return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
+ }