Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754149AbcKRR6N (ORCPT ); Fri, 18 Nov 2016 12:58:13 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:33005 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753830AbcKRR5b (ORCPT ); Fri, 18 Nov 2016 12:57:31 -0500 From: Sergio Paracuellos To: gregkh@linuxfoundation.org Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, liodot@gmail.com, charrer@alacritech.com Subject: [PATCH 3/6] staging: slicoss: logical continuations should be on the previous line Date: Fri, 18 Nov 2016 18:58:07 +0100 Message-Id: <1479491890-10380-4-git-send-email-sergio.paracuellos@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1479491890-10380-1-git-send-email-sergio.paracuellos@gmail.com> References: <1479491890-10380-1-git-send-email-sergio.paracuellos@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 788 Lines: 25 Move logical or operator to previous line to comply with the standard kernel coding style. Signed-off-by: Sergio Paracuellos --- 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