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>
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;
}
/**