Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754043AbdFMVCi (ORCPT ); Tue, 13 Jun 2017 17:02:38 -0400 Received: from faui40.informatik.uni-erlangen.de ([131.188.34.40]:41017 "EHLO faui40.informatik.uni-erlangen.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753733AbdFMVCh (ORCPT ); Tue, 13 Jun 2017 17:02:37 -0400 From: Fabian Wolff To: linux-kernel@i4.cs.fau.de Cc: gregkh@linuxfoundation.org, horvatmate@gmail.com, fabian.wolff@fau.de, hdegoede@redhat.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, ianwmorrison@gmail.com, dan.carpenter@oracle.com Subject: [PATCH v2 3/5] staging: rtl8723bs: wifi_regd.c: remove superfluous spaces from pointer arguments Date: Tue, 13 Jun 2017 23:01:50 +0200 Message-Id: <1497387712-9913-4-git-send-email-fabian.wolff@fau.de> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1497387712-9913-1-git-send-email-fabian.wolff@fau.de> References: <20170613131149.GA23757@kroah.com> <1497387712-9913-1-git-send-email-fabian.wolff@fau.de> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1350 Lines: 36 This patch implements the suggestions of checkpatch.pl to remove unnecessary spaces before function pointer arguments as well as in statements of the form "foo * bar" (which should be "foo *bar"). Signed-off-by: Fabian Wolff Signed-off-by: Mate Horvath --- v1->v2: refresh patch drivers/staging/rtl8723bs/os_dep/wifi_regd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8723bs/os_dep/wifi_regd.c b/drivers/staging/rtl8723bs/os_dep/wifi_regd.c index 53ff2ce..6c8d475 100644 --- a/drivers/staging/rtl8723bs/os_dep/wifi_regd.c +++ b/drivers/staging/rtl8723bs/os_dep/wifi_regd.c @@ -123,7 +123,7 @@ static const struct ieee80211_regdomain *_rtw_regdomain_select(struct static void _rtw_regd_init_wiphy(struct rtw_regulatory *reg, struct wiphy *wiphy, - void (*reg_notifier) (struct wiphy * wiphy, + void (*reg_notifier)(struct wiphy *wiphy, struct regulatory_request * request)) { @@ -143,7 +143,7 @@ static void _rtw_regd_init_wiphy(struct rtw_regulatory *reg, } int rtw_regd_init(struct adapter *padapter, - void (*reg_notifier) (struct wiphy * wiphy, + void (*reg_notifier)(struct wiphy *wiphy, struct regulatory_request *request)) { struct wiphy *wiphy = padapter->rtw_wdev->wiphy; -- 2.7.4