From: Leonardo Araujo Date: Mon, 7 Feb 2022 23:42:10 +0000 (-0300) Subject: Staging: r8188eu: core: 'associcated' may be misspelled - perhaps 'associated'? X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=171561849655ee8f0e2c25513fbe0c27026e4777;p=linux.git Staging: r8188eu: core: 'associcated' may be misspelled - perhaps 'associated'? This patch fixes the following checkpatch.pl warning: CHECK: 'associcated' may be misspelled - perhaps 'associated'? Signed-off-by: Leonardo Araujo Link: https://lore.kernel.org/r/20220207234210.26097-1-leonardo.aa88@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/r8188eu/core/rtw_ap.c b/drivers/staging/r8188eu/core/rtw_ap.c index 1486ec6134580..19d12dd9788e2 100644 --- a/drivers/staging/r8188eu/core/rtw_ap.c +++ b/drivers/staging/r8188eu/core/rtw_ap.c @@ -785,7 +785,7 @@ static int rtw_ht_operation_update(struct adapter *padapter) void associated_clients_update(struct adapter *padapter, u8 updated) { - /* update associcated stations cap. */ + /* update associated stations cap. */ if (updated) { struct list_head *phead, *plist; struct sta_info *psta = NULL; @@ -939,7 +939,7 @@ void bss_cap_update_on_sta_join(struct adapter *padapter, struct sta_info *psta) update_beacon(padapter, _HT_ADD_INFO_IE_, NULL, true); } - /* update associcated stations cap. */ + /* update associated stations cap. */ associated_clients_update(padapter, beacon_updated); netdev_dbg(padapter->pnetdev, "updated = %d\n", beacon_updated); @@ -1003,7 +1003,7 @@ u8 bss_cap_update_on_sta_leave(struct adapter *padapter, struct sta_info *psta) update_beacon(padapter, _HT_ADD_INFO_IE_, NULL, true); } - /* update associcated stations cap. */ + /* update associated stations cap. */ netdev_dbg(padapter->pnetdev, "updated = %d\n", beacon_updated);