Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756876AbbKRT7w (ORCPT ); Wed, 18 Nov 2015 14:59:52 -0500 Received: from mail-wm0-f50.google.com ([74.125.82.50]:33263 "EHLO mail-wm0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756850AbbKRT7u (ORCPT ); Wed, 18 Nov 2015 14:59:50 -0500 From: Michael Hornung To: Larry.Finger@lwfinger.net, florian.c.schilhabel@googlemail.com, gregkh@linuxfoundation.org Cc: paul.gortmaker@windriver.com, punitvara@gmail.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Michael Hornung Subject: [PATCH 3/6] staging: rtl8712: Coding style: Fix missing spaces Date: Wed, 18 Nov 2015 20:59:14 +0100 Message-Id: <1447876757-25790-4-git-send-email-mhornung.linux@gmail.com> X-Mailer: git-send-email 2.6.2 In-Reply-To: <1447876757-25790-3-git-send-email-mhornung.linux@gmail.com> References: <1447876757-25790-1-git-send-email-mhornung.linux@gmail.com> <1447876757-25790-2-git-send-email-mhornung.linux@gmail.com> <1447876757-25790-3-git-send-email-mhornung.linux@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1076 Lines: 29 * Add missing spaces around bitwise OR operation in order to get rid of checkpatch.pl's "CHECK: spaces preferred around that '|'" Signed-off-by: Michael Hornung --- drivers/staging/rtl8712/ieee80211.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8712/ieee80211.h b/drivers/staging/rtl8712/ieee80211.h index 8ca3444..e372e1d 100644 --- a/drivers/staging/rtl8712/ieee80211.h +++ b/drivers/staging/rtl8712/ieee80211.h @@ -695,7 +695,7 @@ enum ieee80211_state { #define IEEE_A BIT(0) #define IEEE_B BIT(1) #define IEEE_G BIT(2) -#define IEEE_MODE_MASK (IEEE_A|IEEE_B|IEEE_G) +#define IEEE_MODE_MASK (IEEE_A | IEEE_B | IEEE_G) static inline int ieee80211_is_empty_essid(const char *essid, int essid_len) { -- 2.6.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/