diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2015-09-30 10:20:47 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-02 11:48:15 +0200 |
commit | b890d00e849384ed2529071ce4a8e51160de6055 (patch) | |
tree | dbcbd263d1dfe7f2200829d09faddabfce4531c5 /drivers/staging/rtl8188eu | |
parent | 5f7a9424951b9d415aa61bcbd126ba5a3e09c1bc (diff) | |
download | blackbird-op-linux-b890d00e849384ed2529071ce4a8e51160de6055.tar.gz blackbird-op-linux-b890d00e849384ed2529071ce4a8e51160de6055.zip |
staging: rtl8188eu: Add missing include
In commit 0a0796eb16f3, there is no include to mon.h, a newly created
header file. This omission leads to the following Sparse warnings:
CHECK drivers/staging/rtl8188eu/os_dep/mon.c
drivers/staging/rtl8188eu/os_dep/mon.c:81:6: warning: symbol 'rtl88eu_mon_recv_hook' was not declared. Should it be static?
drivers/staging/rtl8188eu/os_dep/mon.c:113:6: warning: symbol 'rtl88eu_mon_xmit_hook' was not declared. Should it be static?
drivers/staging/rtl8188eu/os_dep/mon.c:167:19: warning: symbol 'rtl88eu_mon_init' was not declared. Should it be static?
drivers/staging/rtl8188eu/os_dep/mon.c:188:6: warning: symbol 'rtl88eu_mon_deinit' was not declared. Should it be static?
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Jakub Sitnicki <jsitnicki@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu')
-rw-r--r-- | drivers/staging/rtl8188eu/os_dep/mon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/rtl8188eu/os_dep/mon.c b/drivers/staging/rtl8188eu/os_dep/mon.c index 3dd3dc05fd53..63bb87593af0 100644 --- a/drivers/staging/rtl8188eu/os_dep/mon.c +++ b/drivers/staging/rtl8188eu/os_dep/mon.c @@ -20,6 +20,7 @@ #include <drv_types.h> #include <rtw_recv.h> #include <rtw_xmit.h> +#include <mon.h> /** * unprotect_frame() - unset Protected flag and strip off IV and ICV/MIC |