From: Kari Argillander Date: Thu, 2 Sep 2021 16:15:26 +0000 (+0300) Subject: fs/ntfs3: Change right headers to upcase.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f97676611937f4550a60970acadeccbd5e6f124c;p=linux.git fs/ntfs3: Change right headers to upcase.c There is no headers. They will be included through ntfs_fs.c, but that is not right thing to do. Let's include headers what this file need straight away. types.h is needed for __le16, u8 etc. kernel.h is needed for le16_to_cpu() Signed-off-by: Kari Argillander Signed-off-by: Konstantin Komarov --- diff --git a/fs/ntfs3/upcase.c b/fs/ntfs3/upcase.c index bbeba778237ee..b5e8256fd710d 100644 --- a/fs/ntfs3/upcase.c +++ b/fs/ntfs3/upcase.c @@ -5,13 +5,9 @@ * */ -#include -#include -#include -#include +#include +#include -#include "debug.h" -#include "ntfs.h" #include "ntfs_fs.h" static inline u16 upcase_unicode_char(const u16 *upcase, u16 chr)