mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
mlxsw: switchx2: Remove unnecessary conversion to bool
Suppress following warning from coccinelle: drivers/net/ethernet/mellanox/mlxsw//switchx2.c:183:63-68: WARNING: conversion to bool not needed here Signed-off-by: Ido Schimmel <idosch@mellanox.com> Reviewed-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e1da9618b7
commit
cfe9701a25
@ -180,7 +180,7 @@ static int mlxsw_sx_port_oper_status_get(struct mlxsw_sx_port *mlxsw_sx_port,
|
||||
if (err)
|
||||
return err;
|
||||
oper_status = mlxsw_reg_paos_oper_status_get(paos_pl);
|
||||
*p_is_up = oper_status == MLXSW_PORT_ADMIN_STATUS_UP ? true : false;
|
||||
*p_is_up = oper_status == MLXSW_PORT_ADMIN_STATUS_UP;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user