From 0d45ffcd648971ab11b14120e43723757b17a137 Mon Sep 17 00:00:00 2001 From: Amarjargal Gundjalam Date: Sun, 25 Oct 2015 07:48:56 -0700 Subject: staging: slicoss: Adds space around operators MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch fixes the checkpatch.pl check: CHECK: spaces preferred around that ‘’ Signed-off-by: Amarjargal Gundjalam Signed-off-by: Greg Kroah-Hartman --- drivers/staging/slicoss/slic.h | 4 ++-- drivers/staging/slicoss/slicoss.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'drivers') diff --git a/drivers/staging/slicoss/slic.h b/drivers/staging/slicoss/slic.h index 6ccd1d5394e9..92c6862b503d 100644 --- a/drivers/staging/slicoss/slic.h +++ b/drivers/staging/slicoss/slic.h @@ -446,7 +446,7 @@ struct adapter { * SLIC Handles */ /* Object handles*/ - struct slic_handle slic_handles[SLIC_CMDQ_MAXCMDS+1]; + struct slic_handle slic_handles[SLIC_CMDQ_MAXCMDS + 1]; /* Free object handles*/ struct slic_handle *pfree_slic_handles; /* Object handle list lock*/ @@ -512,6 +512,6 @@ struct adapter { #define FLUSH true #define DONT_FLUSH false -#define SIOCSLICSETINTAGG (SIOCDEVPRIVATE+10) +#define SIOCSLICSETINTAGG (SIOCDEVPRIVATE + 10) #endif /* __SLIC_DRIVER_H__ */ diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c index c88ed696fe54..8ce900066b24 100644 --- a/drivers/staging/slicoss/slicoss.c +++ b/drivers/staging/slicoss/slicoss.c @@ -160,7 +160,7 @@ static void slic_mcast_set_bit(struct adapter *adapter, char *address) /* Get the CRC polynomial for the mac address */ /* we use bits 1-8 (lsb), bitwise reversed, * msb (= lsb bit 0 before bitrev) is automatically discarded */ - crcpoly = ether_crc(ETH_ALEN, address)>>23; + crcpoly = ether_crc(ETH_ALEN, address) >> 23; /* We only have space on the SLIC for 64 entries. Lop * off the top two bits. (2^6 = 64) -- cgit v1.2.3