Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1525597

[PATCH 3/6] staging: slicoss: logical continuations should be on the previous line

From Sergio Paracuellos <sergio.paracuellos@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 3/6] staging: slicoss: logical continuations should be on the previous line
Date 2016-11-18 19:00 +0100
Message-ID <sEVCa-1Ow-19@gated-at.bofh.it> (permalink)
References <sEVCa-1Ow-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Move logical or operator to previous line to comply with
the standard kernel coding style.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
---
 drivers/staging/slicoss/slicoss.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c
index f8b956f..4ea5df6 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;
 	}
 
-- 
1.9.1

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH 3/6] staging: slicoss: logical continuations should be on the previous line Sergio Paracuellos <sergio.paracuellos@gmail.com> - 2016-11-18 19:00 +0100

csiph-web