diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-27 08:11:05 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:05:04 -0600 |
commit | 8d28959d700aa537650b5e62c63d49d3b807e809 (patch) | |
tree | e764b0526dff007aedbe4d99c96b8a2b40614544 /fs/ubifs | |
parent | 26d4114da22272937c899d67b51498559ba312d2 (diff) | |
download | u-boot-8d28959d700aa537650b5e62c63d49d3b807e809.tar.gz u-boot-8d28959d700aa537650b5e62c63d49d3b807e809.tar.bz2 u-boot-8d28959d700aa537650b5e62c63d49d3b807e809.zip |
fs: Remove <common.h> and add needed includes
Remove <common.h> from all "fs/" files and when needed add
missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/super.c | 1 | ||||
-rw-r--r-- | fs/ubifs/ubifs.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 3e7160352e..788f88f049 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -29,7 +29,6 @@ #include <linux/writeback.h> #else -#include <common.h> #include <malloc.h> #include <memalign.h> #include <linux/bitops.h> diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c index a509584e5d..75de01e95f 100644 --- a/fs/ubifs/ubifs.c +++ b/fs/ubifs/ubifs.c @@ -11,7 +11,6 @@ * Adrian Hunter */ -#include <common.h> #include <env.h> #include <gzip.h> #include <log.h> |