summaryrefslogtreecommitdiffstats
path: root/drivers/staging/r8188eu/include/rtw_ioctl_set.h
diff options
context:
space:
mode:
authorDeepak R Varma <drv@mailo.com>2022-10-21 03:00:35 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-10-22 10:00:22 +0200
commit2bf279885c596c7680426cacd0fe137db0e00a85 (patch)
treee283899ea5c5b5507ff9b2540f6f07e3e74f1812 /drivers/staging/r8188eu/include/rtw_ioctl_set.h
parent4b66ec6961f170cf782fb66520c36f2e950c7601 (diff)
downloadlinux-2bf279885c596c7680426cacd0fe137db0e00a85.tar.bz2
staging: r8188eu: Associate pointer symbol with parameter name
The pointer symbol '*' should be associated with the function parameter name and not its type. This improves code readability and adheres to the coding-style guidelines. Address following checkpatch reported error: ERROR: "foo * bar" should be "foo *bar" While in there, update parameter name at one place to match other function declarations. Signed-off-by: Deepak R Varma <drv@mailo.com> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150 Link: https://lore.kernel.org/r/d946b69bfdfb44baae3a130e412ed2e217a710a7.1666299151.git.drv@mailo.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/r8188eu/include/rtw_ioctl_set.h')
-rw-r--r--drivers/staging/r8188eu/include/rtw_ioctl_set.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/r8188eu/include/rtw_ioctl_set.h b/drivers/staging/r8188eu/include/rtw_ioctl_set.h
index 7365079c704f..abe460d6504d 100644
--- a/drivers/staging/r8188eu/include/rtw_ioctl_set.h
+++ b/drivers/staging/r8188eu/include/rtw_ioctl_set.h
@@ -10,10 +10,10 @@ typedef u8 NDIS_802_11_PMKID_VALUE[16];
u8 rtw_set_802_11_authentication_mode(struct adapter *adapt,
enum ndis_802_11_auth_mode authmode);
-u8 rtw_set_802_11_bssid(struct adapter*adapter, u8 *bssid);
+u8 rtw_set_802_11_bssid(struct adapter *adapter, u8 *bssid);
u8 rtw_set_802_11_add_wep(struct adapter *adapter, struct ndis_802_11_wep *wep);
u8 rtw_set_802_11_disassociate(struct adapter *adapter);
-u8 rtw_set_802_11_bssid_list_scan(struct adapter*adapter,
+u8 rtw_set_802_11_bssid_list_scan(struct adapter *adapter,
struct ndis_802_11_ssid *pssid,
int ssid_max_num);
u8 rtw_set_802_11_infrastructure_mode(struct adapter *adapter,