Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ec952b8 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller
Browse files

bonding: fix sparse warning



Fix use of zero where NULL expected. And wrap long line.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarJay Vosburgh <fubar@us.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a693e698
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -269,7 +269,8 @@ struct bonding {
 *
 * 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;
	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)