drivers/net: Move && and || to end of previous line
[deliverable/linux.git] / drivers / net / bonding / bonding.h
index a51ae7dc8d5176d740c156903a390f294a9e7ff4..558ec1352527a5d9f4357bc41db29c4cba5fd68f 100644 (file)
@@ -254,8 +254,8 @@ static inline struct bonding *bond_get_bond_by_slave(struct slave *slave)
 
 static inline bool bond_is_lb(const struct bonding *bond)
 {
-       return bond->params.mode == BOND_MODE_TLB
-               || bond->params.mode == BOND_MODE_ALB;
+       return (bond->params.mode == BOND_MODE_TLB ||
+               bond->params.mode == BOND_MODE_ALB);
 }
 
 #define BOND_PRI_RESELECT_ALWAYS       0
This page took 0.024819 seconds and 5 git commands to generate.