From 43bb32a58546a3b29400566d5907b9524edfe609 Mon Sep 17 00:00:00 2001 From: Aybuke Ozdemir Date: Thu, 25 Sep 2014 01:11:45 +0300 Subject: [PATCH] Staging: wlan-ng: Fix unnecessary space before function pointer arguments This patch fixes these warning messages found by checkpatch.pl: WARNING: Unnecessary space before function pointer arguments Signed-off-by: Aybuke Ozdemir Signed-off-by: Greg Kroah-Hartman --- drivers/staging/wlan-ng/p80211netdev.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211netdev.h b/drivers/staging/wlan-ng/p80211netdev.h index 69a4f59c8312..c547e1cb4c0d 100644 --- a/drivers/staging/wlan-ng/p80211netdev.h +++ b/drivers/staging/wlan-ng/p80211netdev.h @@ -180,16 +180,16 @@ typedef struct wlandevice { unsigned int ethconv; /* device methods (init by MSD, used by p80211 */ - int (*open) (struct wlandevice *wlandev); - int (*close) (struct wlandevice *wlandev); - void (*reset) (struct wlandevice *wlandev); - int (*txframe) (struct wlandevice *wlandev, struct sk_buff *skb, + int (*open)(struct wlandevice *wlandev); + int (*close)(struct wlandevice *wlandev); + void (*reset)(struct wlandevice *wlandev); + int (*txframe)(struct wlandevice *wlandev, struct sk_buff *skb, union p80211_hdr *p80211_hdr, struct p80211_metawep *p80211_wep); - int (*mlmerequest) (struct wlandevice *wlandev, struct p80211msg *msg); - int (*set_multicast_list) (struct wlandevice *wlandev, + int (*mlmerequest)(struct wlandevice *wlandev, struct p80211msg *msg); + int (*set_multicast_list)(struct wlandevice *wlandev, netdevice_t *dev); - void (*tx_timeout) (struct wlandevice *wlandev); + void (*tx_timeout)(struct wlandevice *wlandev); /* 802.11 State */ u8 bssid[WLAN_BSSID_LEN]; -- 2.11.0