]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fs: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Sat, 27 Apr 2024 14:11:05 +0000 (08:11 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 6 May 2024 21:05:04 +0000 (15:05 -0600)
Remove <common.h> from all "fs/" files and when needed add
missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
32 files changed:
fs/btrfs/dev.c
fs/btrfs/disk-io.c
fs/btrfs/volumes.c
fs/cbfs/cbfs.c
fs/cramfs/cramfs.c
fs/cramfs/uncompress.c
fs/ext4/dev.c
fs/ext4/ext4_common.c
fs/ext4/ext4_journal.c
fs/ext4/ext4_write.c
fs/ext4/ext4fs.c
fs/fat/fat.c
fs/fat/fat_write.c
fs/fs.c
fs/fs_internal.c
fs/jffs2/compr_zlib.c
fs/jffs2/jffs2_1pass.c
fs/jffs2/mergesort.c
fs/sandbox/host_bootdev.c
fs/sandbox/sandboxfs.c
fs/semihostingfs.c
fs/ubifs/super.c
fs/ubifs/ubifs.c
fs/yaffs2/yaffs_mtdif.c
fs/yaffs2/yaffs_mtdif2.c
fs/yaffs2/yaffs_uboot_glue.c
fs/zfs/dev.c
fs/zfs/zfs.c
fs/zfs/zfs_fletcher.c
fs/zfs/zfs_lzjb.c
fs/zfs/zfs_sha256.c
include/jffs2/load_kernel.h

index cb3b9713a5f4d1b7c209e7b75d740f7296ac1daa..e27a032c9f69252d0fbafa551e252641e9d474dc 100644 (file)
@@ -5,7 +5,6 @@
  * 2017 Marek BehĂșn, CZ.NIC, kabel@kernel.org
  */
 
-#include <common.h>
 #include <blk.h>
 #include <compiler.h>
 #include <fs_internal.h>
index 7eaa7e949604f2b3f0e8c4a750f70974095b1e0f..e5bfaf461c2bcb6075f7dd9b43a3ba2f0e045462 100644 (file)
@@ -1,5 +1,4 @@
 // SPDX-License-Identifier: GPL-2.0+
-#include <common.h>
 #include <fs_internal.h>
 #include <log.h>
 #include <uuid.h>
index 7d4095d9ca88d9933dd61a216bd91e875956f0d1..8ec545eded7b275b7d2252f30d2daa7971b58faf 100644 (file)
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0+
 #include <stdlib.h>
-#include <common.h>
+#include <errno.h>
 #include <fs_internal.h>
 #include "ctree.h"
 #include "disk-io.h"
index 714f4baafc9e89434991ec2aec8dbfb0cbd67dd5..ad5583233bb1163a60bfaa7bc6f7c1e11fdc8038 100644 (file)
@@ -3,10 +3,10 @@
  * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
  */
 
-#include <common.h>
 #include <cbfs.h>
 #include <log.h>
 #include <malloc.h>
+#include <linux/errno.h>
 #include <asm/byteorder.h>
 
 /* Offset of master header from the start of a coreboot ROM */
index abb2de34eb05d4c2218d34002bbc6394a9aade86..22148ff8fe2736882b48db236e970da7fafca76b 100644 (file)
@@ -24,7 +24,7 @@
  * The actual compression is based on zlib, see the other files.
  */
 
-#include <common.h>
+#include <stdio.h>
 #include <malloc.h>
 #include <asm/byteorder.h>
 #include <linux/stat.h>
index 0d071b69f4cc560d439dec76807a7286b1b24698..2141edf22e4ad3f22e685449c26258bd63941226 100644 (file)
@@ -20,7 +20,7 @@
  * then is used by multiple filesystems.
  */
 
-#include <common.h>
+#include <stdio.h>
 #include <cyclic.h>
 #include <malloc.h>
 #include <watchdog.h>
index 168443de1ff7b36b68287048bb555f5355c2af0d..3fd8980b1d69b21afd89b1ac325afe0b8f5fd553 100644 (file)
@@ -22,7 +22,6 @@
  *             fs/ext2/dev.c file in uboot.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <config.h>
 #include <fs_internal.h>
index 2ff0dca2495e2b13192ad3ccf25978d3af1fdea7..857c15d878e4b414607082bd7767c3aa32a8277d 100644 (file)
@@ -18,7 +18,6 @@
  * ext4write : Based on generic ext4 protocol.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <ext_common.h>
 #include <ext4fs.h>
index e80f797c8dc97a5600b4d3a040730bd664d8860a..02c4ac2cb931b866d690461da1dcbb6054b143f4 100644 (file)
@@ -13,7 +13,6 @@
  * Copyright 1998-2000 Red Hat, Inc --- All Rights Reserved
  */
 
-#include <common.h>
 #include <blk.h>
 #include <ext4fs.h>
 #include <log.h>
index d057f6b5a794c01eb0d93d12cbfd79ecf05d8264..38da3923c477cf2c9811e874c795bf0c89532117 100644 (file)
@@ -21,7 +21,6 @@
  */
 
 
-#include <common.h>
 #include <blk.h>
 #include <log.h>
 #include <malloc.h>
index 33e200ffa3c5e1c7c5bc50aaeff1b8ec6a326d29..da59cb008fce46486384986430906113f7d500e5 100644 (file)
@@ -20,7 +20,6 @@
  * ext4write : Based on generic ext4 protocol.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <ext_common.h>
 #include <ext4fs.h>
index 2dd9d4e72dcc679587ec6270855b068a06dc9174..e2570e81676875d54911ceec27a8d1bedc1c32d5 100644 (file)
@@ -10,7 +10,6 @@
 
 #define LOG_CATEGORY   LOGC_FS
 
-#include <common.h>
 #include <blk.h>
 #include <config.h>
 #include <exports.h>
index c8e0fbf1a3b3d0b8e5458d10c5b2aa7af0a60681..ea877ee9171bde4e6cbef505678ba5afe4c36435 100644 (file)
@@ -7,7 +7,6 @@
 
 #define LOG_CATEGORY LOGC_FS
 
-#include <common.h>
 #include <command.h>
 #include <config.h>
 #include <div64.h>
diff --git a/fs/fs.c b/fs/fs.c
index acf465bdd807fc079d7363c6d9f8936ef4c606a3..bed1f7242f417fa6c8c6d7613d847f7fed00c66e 100644 (file)
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -9,7 +9,6 @@
 #include <config.h>
 #include <display_options.h>
 #include <errno.h>
-#include <common.h>
 #include <env.h>
 #include <lmb.h>
 #include <log.h>
@@ -21,6 +20,7 @@
 #include <fs.h>
 #include <sandboxfs.h>
 #include <semihostingfs.h>
+#include <time.h>
 #include <ubifs_uboot.h>
 #include <btrfs.h>
 #include <asm/global_data.h>
index 111f91b355d1ff974d0953944464fc07c48bbe62..51c1719361b1f96e8d83a5da7a19d46dc2d466b9 100644 (file)
@@ -7,7 +7,6 @@
 
 #define LOG_CATEGORY LOGC_CORE
 
-#include <common.h>
 #include <blk.h>
 #include <compiler.h>
 #include <log.h>
index d306b6dc4cfe8961c8d8f228087e04b2333904f5..e1e3c15e75e1d229bb4fd944ab3358c229f7f842 100644 (file)
@@ -35,8 +35,6 @@
  *
  */
 
-#include <common.h>
-#include <config.h>
 #include <jffs2/jffs2.h>
 #include <jffs2/mini_inflate.h>
 
index 49ba82ef959690597dc31160eca02b0a4cd0d1af..5b7d7f4ae881cee34d97e000b8af651446e2bd0b 100644 (file)
  */
 
 
-#include <common.h>
 #include <config.h>
 #include <malloc.h>
 #include <div64.h>
index fca77aa651149fc80da4cd2405308f3f633134c6..495937d792db0b28db4b084e8e04592e34324a4d 100644 (file)
@@ -7,7 +7,6 @@
  * http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html
  */
 
-#include <common.h>
 #include "jffs2_private.h"
 
 int sort_list(struct b_list *list)
index 3ef53627608af1f2429e86ee03eb16264d20d397..3f74972a9f81a88ecc7efcf208ef2134840ce46f 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <bootdev.h>
 #include <bootflow.h>
 #include <bootmeth.h>
index 4ae41d5b4db19b0bdf61ec42698a2eb0af503522..773b583fa43eebbd730c6e3f1cf92ec010f7b162 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright (c) 2012, Google Inc.
  */
 
-#include <common.h>
+#include <stdio.h>
 #include <fs.h>
 #include <malloc.h>
 #include <os.h>
index 3592338a6865ec06d64a000b89207c53a7e71dfd..77e39ca407e4d240a1fd573497c5b6b908816454 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (c) 2012, Google Inc.
  */
 
-#include <common.h>
+#include <stdio.h>
 #include <fs.h>
 #include <malloc.h>
 #include <os.h>
index 3e7160352e6cccf24860773bf22afed4fbd88040..788f88f0495278d36ac112397a70cf6c0d721a2c 100644 (file)
@@ -29,7 +29,6 @@
 #include <linux/writeback.h>
 #else
 
-#include <common.h>
 #include <malloc.h>
 #include <memalign.h>
 #include <linux/bitops.h>
index a509584e5d714634a4df10ad71e0affd36ca1d26..75de01e95f7cb8b4cdb813b31124e3f401c11e96 100644 (file)
@@ -11,7 +11,6 @@
  *          Adrian Hunter
  */
 
-#include <common.h>
 #include <env.h>
 #include <gzip.h>
 #include <log.h>
index 50fed2d4b150f0db6ab65bc788d3d50782b27e60..0eec22bc4a543d3facd2cb7cf9060c00f28613c0 100644 (file)
@@ -12,7 +12,6 @@
  */
 
 /* XXX U-BOOT XXX */
-#include <common.h>
 
 #include "yportenv.h"
 
index 81a4d964f3e92777ebba6fb2f9213ec74e51f34f..2bf171f99f132345cc1a29bee73370e8721638a8 100644 (file)
@@ -14,7 +14,6 @@
 /* mtd interface for YAFFS2 */
 
 /* XXX U-BOOT XXX */
-#include <common.h>
 #include <linux/bug.h>
 #include <linux/errno.h>
 
index 0a920561149a45ee0c8a8630ee424beea2a18a3c..deddbaac51eba4d46d1a251ae13a24914ce8113b 100644 (file)
@@ -19,7 +19,6 @@
  * This version now uses the ydevconfig mechanism to set up partitions.
  */
 
-#include <common.h>
 #include <div64.h>
 #include <malloc.h>
 #include <linux/printk.h>
index fcd9893b3ac2fb8798eff06c7d316b3496d9eb70..722c6a86176c3618e0e310bda6f5a3f5adb47228 100644 (file)
@@ -8,7 +8,6 @@
  */
 
 
-#include <common.h>
 #include <config.h>
 #include <fs_internal.h>
 #include <zfs_common.h>
index bfc11fa6676b61cd456c189f553c1569c577d6c9..c44e7ece5dfb0fb17d08b99a1cc744bfd841c978 100644 (file)
@@ -10,7 +10,6 @@
  *     Copyright 2004  Sun Microsystems, Inc.
  */
 
-#include <common.h>
 #include <log.h>
 #include <malloc.h>
 #include <linux/stat.h>
index 008a303ec7962a323ecfe66b4d17cff31d508935..b06c335626a466efe66981161dcc5912310579a4 100644 (file)
@@ -8,7 +8,6 @@
  * Use is subject to license terms.
  */
 
-#include <common.h>
 #include <malloc.h>
 #include <linux/stat.h>
 #include <linux/time.h>
index b42d4980129f86ada0fca1274416123ce2972bfe..e79c5b4278fd285a6f85d497e874fb8205f55a15 100644 (file)
@@ -8,7 +8,6 @@
  * Use is subject to license terms.
  */
 
-#include <common.h>
 #include <malloc.h>
 #include <linux/stat.h>
 #include <linux/time.h>
index cb5b1c06834d0f3c33712a54eb32c80a3ced8a62..602d75254ff962a7d84bdf0e09ef25187c72b5a8 100644 (file)
@@ -8,7 +8,6 @@
  * Use is subject to license terms.
  */
 
-#include <common.h>
 #include <malloc.h>
 #include <linux/stat.h>
 #include <linux/time.h>
index 9346d7ee9f1b6376097337181565f6202bc12f1b..fa4600e84fc0628392f7cd11ede664b3746cd5cc 100644 (file)
@@ -10,6 +10,7 @@
  *-----------------------------------------------------------------------*/
 
 #include <linux/list.h>
+#include <linux/string.h>
 
 /* mtd device types */
 #define MTD_DEV_TYPE_NOR       0x0001