ice: Cleanup unneeded parenthesis

Sergei Shtylyov pointed out that two instances of parenthesis are not
needed, so remove them.

Suggested-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
This commit is contained in:
Jeff Kirsher 2020-02-21 14:15:27 -08:00
parent 6c9ee30693
commit f3beaf246f
1 changed files with 2 additions and 2 deletions

View File

@ -77,9 +77,9 @@ static u8 ice_dcb_get_mode(struct ice_port_info *port_info, bool host)
mode = DCB_CAP_DCBX_LLD_MANAGED;
if (port_info->local_dcbx_cfg.dcbx_mode & ICE_DCBX_MODE_CEE)
return (mode | DCB_CAP_DCBX_VER_CEE);
return mode | DCB_CAP_DCBX_VER_CEE;
else
return (mode | DCB_CAP_DCBX_VER_IEEE);
return mode | DCB_CAP_DCBX_VER_IEEE;
}
/**