mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 04:19:23 -04:00
staging: wilc1000: rename pu8ssid in wilc_set_join_req
This patch renames pu8ssid to ssid to remove pu8 prefix. There is no need to add this prefix in order to show data type of this variable. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
16a537ca78
commit
f2cb5f3f1b
@@ -3365,7 +3365,7 @@ int wilc_set_mac_address(struct wilc_vif *vif, u8 *mac_addr)
|
||||
return result;
|
||||
}
|
||||
|
||||
int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *pu8ssid,
|
||||
int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *ssid,
|
||||
size_t ssidLen, const u8 *pu8IEs, size_t IEsLen,
|
||||
wilc_connect_result pfConnectResult, void *pvUserArg,
|
||||
u8 u8security, enum AUTHTYPE tenuAuth_type,
|
||||
@@ -3402,10 +3402,10 @@ int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *pu8ssid,
|
||||
memcpy(msg.body.con_info.bssid, bssid, 6);
|
||||
}
|
||||
|
||||
if (pu8ssid) {
|
||||
if (ssid) {
|
||||
msg.body.con_info.ssid_len = ssidLen;
|
||||
msg.body.con_info.ssid = kmalloc(ssidLen, GFP_KERNEL);
|
||||
memcpy(msg.body.con_info.ssid, pu8ssid, ssidLen);
|
||||
memcpy(msg.body.con_info.ssid, ssid, ssidLen);
|
||||
}
|
||||
|
||||
if (pu8IEs) {
|
||||
|
||||
@@ -326,7 +326,7 @@ int wilc_set_pmkid_info(struct wilc_vif *vif,
|
||||
int wilc_get_mac_address(struct wilc_vif *vif, u8 *mac_addr);
|
||||
int wilc_set_mac_address(struct wilc_vif *vif, u8 *mac_addr);
|
||||
int wilc_wait_msg_queue_idle(void);
|
||||
int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *pu8ssid,
|
||||
int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *ssid,
|
||||
size_t ssidLen, const u8 *pu8IEs, size_t IEsLen,
|
||||
wilc_connect_result pfConnectResult, void *pvUserArg,
|
||||
u8 u8security, enum AUTHTYPE tenuAuth_type,
|
||||
|
||||
Reference in New Issue
Block a user