Skip to content

Commit 1d58fec

Browse files
ajaykathatgregkh
authored andcommitted
staging: wilc1000: added 'wilc_' prefix for 'struct assoc_resp' name
Use 'wilc_' prefix for 'assoc_resp' struct to have proper naming convention. Signed-off-by: Ajay Singh <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent c5295d1 commit 1d58fec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/staging/wilc1000/fw.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#define WILC_MAX_NUM_PMKIDS 16
1515
#define WILC_MAX_NUM_SCANNED_CH 14
1616

17-
struct assoc_resp {
17+
struct wilc_assoc_resp {
1818
__le16 capab_info;
1919
__le16 status_code;
2020
__le16 aid;

drivers/staging/wilc1000/hif.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ static s32 wilc_parse_assoc_resp_info(u8 *buffer, u32 buffer_len,
552552
{
553553
u8 *ies;
554554
u16 ies_len;
555-
struct assoc_resp *res = (struct assoc_resp *)buffer;
555+
struct wilc_assoc_resp *res = (struct wilc_assoc_resp *)buffer;
556556

557557
ret_conn_info->status = le16_to_cpu(res->status_code);
558558
if (ret_conn_info->status == WLAN_STATUS_SUCCESS) {

0 commit comments

Comments
 (0)