mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
bonding: fix sparse warning
Fix use of zero where NULL expected. And wrap long line. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: Jay Vosburgh <fubar@us.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a693e69897
commit
4ec952b8ab
@ -269,7 +269,8 @@ struct bonding {
|
|||||||
*
|
*
|
||||||
* Caller must hold bond lock for read
|
* Caller must hold bond lock for read
|
||||||
*/
|
*/
|
||||||
static inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct net_device *slave_dev)
|
static inline struct slave *bond_get_slave_by_dev(struct bonding *bond,
|
||||||
|
struct net_device *slave_dev)
|
||||||
{
|
{
|
||||||
struct slave *slave = NULL;
|
struct slave *slave = NULL;
|
||||||
int i;
|
int i;
|
||||||
@ -280,7 +281,7 @@ static inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct n
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct bonding *bond_get_bond_by_slave(struct slave *slave)
|
static inline struct bonding *bond_get_bond_by_slave(struct slave *slave)
|
||||||
|
Loading…
Reference in New Issue
Block a user