From: Martin Kaiser Date: Mon, 2 May 2022 20:06:47 +0000 (+0200) Subject: staging: r8188eu: remove action_handler string X-Git-Tag: v6.1-rc5~1163^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d0c9872117e944fb314d0c71d9d25c17c3ed3b38;p=platform%2Fkernel%2Flinux-starfive.git staging: r8188eu: remove action_handler string Remove the unused str component from struct action_handler and the corresponding entries in OnAction_tbl. Signed-off-by: Martin Kaiser Link: https://lore.kernel.org/r/20220502200652.143665-5-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/r8188eu/core/rtw_mlme_ext.c b/drivers/staging/r8188eu/core/rtw_mlme_ext.c index a581930..9c83a74 100644 --- a/drivers/staging/r8188eu/core/rtw_mlme_ext.c +++ b/drivers/staging/r8188eu/core/rtw_mlme_ext.c @@ -33,9 +33,9 @@ static mlme_handler mlme_sta_tbl[] = { }; static struct action_handler OnAction_tbl[] = { - {RTW_WLAN_CATEGORY_BACK, "ACTION_BACK", &OnAction_back}, - {RTW_WLAN_CATEGORY_PUBLIC, "ACTION_PUBLIC", on_action_public}, - {RTW_WLAN_CATEGORY_P2P, "ACTION_P2P", &OnAction_p2p}, + {RTW_WLAN_CATEGORY_BACK, &OnAction_back}, + {RTW_WLAN_CATEGORY_PUBLIC, on_action_public}, + {RTW_WLAN_CATEGORY_P2P, &OnAction_p2p}, }; static u8 null_addr[ETH_ALEN] = {0, 0, 0, 0, 0, 0}; diff --git a/drivers/staging/r8188eu/include/rtw_mlme_ext.h b/drivers/staging/r8188eu/include/rtw_mlme_ext.h index 136879a..63e4ee8 100644 --- a/drivers/staging/r8188eu/include/rtw_mlme_ext.h +++ b/drivers/staging/r8188eu/include/rtw_mlme_ext.h @@ -188,7 +188,6 @@ typedef unsigned int (*mlme_handler)(struct adapter *adapt, struct recv_frame *f struct action_handler { unsigned int num; - char* str; unsigned int (*func)(struct adapter *adapt, struct recv_frame *frame); };