diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-08-07 23:33:19 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-08-07 23:33:19 -0400 |
commit | 4ab84d450e24b3a309608182a8d8e30626b46f8f (patch) | |
tree | 652fdffd5e03a6336bc86179364087388431e86e /drivers/net/bnx2x_main.c | |
parent | c1c6c11a6860c8135fd0d923c3d49fb368889b10 (diff) |
bnx2x: fix logical op
Fix dubious logical operation that was found by sparse:
linux-next-20080807/drivers/net/bnx2x_main.c:7205:27: warning: dubious: !x & y
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x_main.c')
-rw-r--r-- | drivers/net/bnx2x_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index af251a5df844..272a4bd25953 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c | |||
@@ -7202,7 +7202,7 @@ static void __devinit bnx2x_link_settings_requested(struct bnx2x *bp) | |||
7202 | bp->link_params.req_flow_ctrl = (bp->port.link_config & | 7202 | bp->link_params.req_flow_ctrl = (bp->port.link_config & |
7203 | PORT_FEATURE_FLOW_CONTROL_MASK); | 7203 | PORT_FEATURE_FLOW_CONTROL_MASK); |
7204 | if ((bp->link_params.req_flow_ctrl == FLOW_CTRL_AUTO) && | 7204 | if ((bp->link_params.req_flow_ctrl == FLOW_CTRL_AUTO) && |
7205 | (!bp->port.supported & SUPPORTED_Autoneg)) | 7205 | !(bp->port.supported & SUPPORTED_Autoneg)) |
7206 | bp->link_params.req_flow_ctrl = FLOW_CTRL_NONE; | 7206 | bp->link_params.req_flow_ctrl = FLOW_CTRL_NONE; |
7207 | 7207 | ||
7208 | BNX2X_DEV_INFO("req_line_speed %d req_duplex %d req_flow_ctrl 0x%x" | 7208 | BNX2X_DEV_INFO("req_line_speed %d req_duplex %d req_flow_ctrl 0x%x" |