From: Sergio Paracuellos Date: Fri, 18 Nov 2016 17:58:07 +0000 (+0100) Subject: staging: slicoss: logical continuations should be on the previous line X-Git-Tag: v4.10-rc1~148^2~159 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=95263c9556796d7c22d901066ceb3787e11dbce5;p=karo-tx-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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c index d3b9c2e13aec..260aa57eaabc 100644 --- a/drivers/staging/slicoss/slicoss.c +++ b/drivers/staging/slicoss/slicoss.c @@ -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; }