From: Steve French Date: Sat, 12 Dec 2020 18:49:28 +0000 (-0600) Subject: cifs: remove some minor warnings pointed out by kernel test robot X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ee0dce4926b95c3c96217c076550216eb6dcd90b;p=linux.git cifs: remove some minor warnings pointed out by kernel test robot Correct some trivial warnings caused when new file unc.c was created. For example: In file included from fs/cifs/unc.c:11: >> fs/cifs/cifsproto.h:44:28: warning: 'struct TCP_Server_Info' declared inside parameter list will not be visible outside of this definition or declaration 44 | extern int smb_send(struct TCP_Server_Info *, struct smb_hdr *, Reported-by: kernel test robot Signed-off-by: Steve French --- diff --git a/fs/cifs/unc.c b/fs/cifs/unc.c index 2c5665f5543af..394aa00cea40e 100644 --- a/fs/cifs/unc.c +++ b/fs/cifs/unc.c @@ -7,7 +7,11 @@ * Jeff Layton */ +#include #include +#include +#include +#include "cifsglob.h" #include "cifsproto.h" /* extract the host portion of the UNC string */