Commit c1ff246a authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: make struct field of action_handler const



The strings in the use of struct action_handler are constant.
Change the type of field str from 'char *' to 'const char *'.

Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 98962eb6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ struct mlme_handler {

struct action_handler {
	unsigned int   num;
	char *str;
	const char *str;
	unsigned int (*func)(struct adapter *adapt, struct recv_frame *frame);
};