mirror of https://gitee.com/openkylin/linux.git
staging: slicoss: logical continuations should be on the previous line
Move logical or operator to previous line to comply with the standard kernel coding style. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0b402c8e0d
commit
95263c9556
|
@ -614,8 +614,8 @@ static void slic_mac_config(struct adapter *adapter)
|
|||
value |= GMCR_GBIT;
|
||||
|
||||
/* enable fullduplex */
|
||||
if ((adapter->linkduplex == LINK_FULLD)
|
||||
|| (adapter->macopts & MAC_LOOPBACK)) {
|
||||
if ((adapter->linkduplex == LINK_FULLD) ||
|
||||
(adapter->macopts & MAC_LOOPBACK)) {
|
||||
value |= GMCR_FULLD;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue