diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2014-05-08 21:52:40 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2014-05-08 21:52:40 +0000 |
commit | a6b27b5ba71c342b65b0d25171dea6f66a0499b1 (patch) | |
tree | e7cb97f8c2b11dceb1d96103385b00c1a0264ffa /target/linux | |
parent | 5e451f462b45d68126742a025b72bf5b2e7de97e (diff) | |
download | master-187ad058-a6b27b5ba71c342b65b0d25171dea6f66a0499b1.tar.gz master-187ad058-a6b27b5ba71c342b65b0d25171dea6f66a0499b1.tar.bz2 master-187ad058-a6b27b5ba71c342b65b0d25171dea6f66a0499b1.zip |
kernel: fix some compile warnings with kernel 3.14
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40734 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic/patches-3.14/702-phy_add_aneg_done_function.patch | 8 | ||||
-rw-r--r-- | target/linux/generic/patches-3.14/997-device_tree_cmdline.patch | 2 |
2 files changed, 7 insertions, 3 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); + } diff --git a/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch b/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch index 8e87b1f03b..bc8e7091d5 100644 --- a/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch +++ b/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch @@ -6,7 +6,7 @@ strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE)); + p = of_get_flat_dt_prop(node, "bootargs-append", &l); + if (p != NULL && l > 0) -+ strlcat(data, p, min(strlen(data) + (int)l, COMMAND_LINE_SIZE)); ++ strlcat(data, p, min_t(int, strlen(data) + (int)l, COMMAND_LINE_SIZE)); /* * CONFIG_CMDLINE is meant to be a default in case nothing else |