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:
Sergio Paracuellos 2016-11-18 18:58:07 +01:00 committed by Greg Kroah-Hartman
parent 0b402c8e0d
commit 95263c9556
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}