From c632f639d1d9bb3e379741a30c6882342d859daf Mon Sep 17 00:00:00 2001
From: Kari Argillander <kari.argillander@gmail.com>
Date: Thu, 2 Sep 2021 19:15:25 +0300
Subject: [Backport c632f639d1d9] src: Change right headers to bitfunc.c
We only need linux/types.h for types like u8 etc. So we can remove rest
and help compiler a little bit.
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
---
src/bitfunc.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/src/bitfunc.c b/src/bitfunc.c
index ce304d40b5e1642cc84d48143e2aa961ac3ea735..bf10e2da5c6e3d29d3788055b2b664927cc9f29b 100644
--- a/src/bitfunc.c
+++ b/src/bitfunc.c
@@ -5,13 +5,8 @@
*
*/
-#include <linux/blkdev.h>
-#include <linux/buffer_head.h>
-#include <linux/fs.h>
-#include <linux/nls.h>
+#include <linux/types.h>
-#include "debug.h"
-#include "ntfs.h"
#include "ntfs_fs.h"
#define BITS_IN_SIZE_T (sizeof(size_t) * 8)
--
2.31.1