From: Guillaume Clement Date: Tue, 22 Jul 2014 20:08:27 +0000 (+0200) Subject: staging: vt6655:fix warning for unexported non-static functions X-Git-Tag: v3.17-rc1~123^2~354 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=e7a3cd595abc8735da1d82faf4cb9eef9b80887a;p=cascardo%2Flinux.git staging: vt6655:fix warning for unexported non-static functions There is one function in aes_ccmp.c which is exported, but sparse sees it unexported because it doesn't include the header that exports it. Signed-off-by: Guillaume Clement Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6655/aes_ccmp.c b/drivers/staging/vt6655/aes_ccmp.c index 4ccfe06481fc..a25e6cf844ed 100644 --- a/drivers/staging/vt6655/aes_ccmp.c +++ b/drivers/staging/vt6655/aes_ccmp.c @@ -35,6 +35,7 @@ #include "device.h" #include "80211hdr.h" +#include "aes_ccmp.h" /*--------------------- Static Definitions -------------------------*/