diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-18 20:20:43 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-19 08:16:36 -0600 |
commit | d678a59d2d719da9e807495b4b021501f2836ca5 (patch) | |
tree | 313e5c32e3d02d3cf1904875b1655140973126e9 /fs | |
parent | 3be9f399e911cfc437a37ac826441f1d96da1c9b (diff) | |
download | u-boot-d678a59d2d719da9e807495b4b021501f2836ca5.tar.gz |
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay
Ethernet"' I failed to notice that b4 noticed it was based on next and
so took that as the base commit and merged that part of next to master.
This reverts commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing
changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35.
Reported-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/dev.c | 1 | ||||
-rw-r--r-- | fs/btrfs/disk-io.c | 1 | ||||
-rw-r--r-- | fs/btrfs/volumes.c | 2 | ||||
-rw-r--r-- | fs/cbfs/cbfs.c | 2 | ||||
-rw-r--r-- | fs/cramfs/cramfs.c | 2 | ||||
-rw-r--r-- | fs/cramfs/uncompress.c | 2 | ||||
-rw-r--r-- | fs/ext4/dev.c | 1 | ||||
-rw-r--r-- | fs/ext4/ext4_common.c | 1 | ||||
-rw-r--r-- | fs/ext4/ext4_journal.c | 1 | ||||
-rw-r--r-- | fs/ext4/ext4_write.c | 1 | ||||
-rw-r--r-- | fs/ext4/ext4fs.c | 1 | ||||
-rw-r--r-- | fs/fat/fat.c | 1 | ||||
-rw-r--r-- | fs/fat/fat_write.c | 1 | ||||
-rw-r--r-- | fs/fs.c | 2 | ||||
-rw-r--r-- | fs/fs_internal.c | 1 | ||||
-rw-r--r-- | fs/jffs2/compr_zlib.c | 2 | ||||
-rw-r--r-- | fs/jffs2/jffs2_1pass.c | 1 | ||||
-rw-r--r-- | fs/jffs2/mergesort.c | 1 | ||||
-rw-r--r-- | fs/sandbox/host_bootdev.c | 1 | ||||
-rw-r--r-- | fs/sandbox/sandboxfs.c | 2 | ||||
-rw-r--r-- | fs/semihostingfs.c | 2 | ||||
-rw-r--r-- | fs/ubifs/super.c | 1 | ||||
-rw-r--r-- | fs/ubifs/ubifs.c | 1 | ||||
-rw-r--r-- | fs/yaffs2/yaffs_mtdif.c | 1 | ||||
-rw-r--r-- | fs/yaffs2/yaffs_mtdif2.c | 1 | ||||
-rw-r--r-- | fs/yaffs2/yaffs_uboot_glue.c | 1 | ||||
-rw-r--r-- | fs/zfs/dev.c | 1 | ||||
-rw-r--r-- | fs/zfs/zfs.c | 1 | ||||
-rw-r--r-- | fs/zfs/zfs_fletcher.c | 1 | ||||
-rw-r--r-- | fs/zfs/zfs_lzjb.c | 1 | ||||
-rw-r--r-- | fs/zfs/zfs_sha256.c | 1 |
31 files changed, 32 insertions, 7 deletions
diff --git a/fs/btrfs/dev.c b/fs/btrfs/dev.c index e27a032c9f6..cb3b9713a5f 100644 --- a/fs/btrfs/dev.c +++ b/fs/btrfs/dev.c @@ -5,6 +5,7 @@ * 2017 Marek BehĂșn, CZ.NIC, kabel@kernel.org */ +#include <common.h> #include <blk.h> #include <compiler.h> #include <fs_internal.h> diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index e5bfaf461c2..7eaa7e94960 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -1,4 +1,5 @@ // SPDX-License-Identifier: GPL-2.0+ +#include <common.h> #include <fs_internal.h> #include <log.h> #include <uuid.h> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 8ec545eded7..7d4095d9ca8 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0+ #include <stdlib.h> -#include <errno.h> +#include <common.h> #include <fs_internal.h> #include "ctree.h" #include "disk-io.h" diff --git a/fs/cbfs/cbfs.c b/fs/cbfs/cbfs.c index ad5583233bb..714f4baafc9 100644 --- a/fs/cbfs/cbfs.c +++ b/fs/cbfs/cbfs.c @@ -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 */ diff --git a/fs/cramfs/cramfs.c b/fs/cramfs/cramfs.c index 22148ff8fe2..abb2de34eb0 100644 --- a/fs/cramfs/cramfs.c +++ b/fs/cramfs/cramfs.c @@ -24,7 +24,7 @@ * The actual compression is based on zlib, see the other files. */ -#include <stdio.h> +#include <common.h> #include <malloc.h> #include <asm/byteorder.h> #include <linux/stat.h> diff --git a/fs/cramfs/uncompress.c b/fs/cramfs/uncompress.c index 2141edf22e4..0d071b69f4c 100644 --- a/fs/cramfs/uncompress.c +++ b/fs/cramfs/uncompress.c @@ -20,7 +20,7 @@ * then is used by multiple filesystems. */ -#include <stdio.h> +#include <common.h> #include <cyclic.h> #include <malloc.h> #include <watchdog.h> diff --git a/fs/ext4/dev.c b/fs/ext4/dev.c index 3fd8980b1d6..168443de1ff 100644 --- a/fs/ext4/dev.c +++ b/fs/ext4/dev.c @@ -22,6 +22,7 @@ * fs/ext2/dev.c file in uboot. */ +#include <common.h> #include <blk.h> #include <config.h> #include <fs_internal.h> diff --git a/fs/ext4/ext4_common.c b/fs/ext4/ext4_common.c index 857c15d878e..2ff0dca2495 100644 --- a/fs/ext4/ext4_common.c +++ b/fs/ext4/ext4_common.c @@ -18,6 +18,7 @@ * ext4write : Based on generic ext4 protocol. */ +#include <common.h> #include <blk.h> #include <ext_common.h> #include <ext4fs.h> diff --git a/fs/ext4/ext4_journal.c b/fs/ext4/ext4_journal.c index 02c4ac2cb93..e80f797c8dc 100644 --- a/fs/ext4/ext4_journal.c +++ b/fs/ext4/ext4_journal.c @@ -13,6 +13,7 @@ * Copyright 1998-2000 Red Hat, Inc --- All Rights Reserved */ +#include <common.h> #include <blk.h> #include <ext4fs.h> #include <log.h> diff --git a/fs/ext4/ext4_write.c b/fs/ext4/ext4_write.c index 38da3923c47..d057f6b5a79 100644 --- a/fs/ext4/ext4_write.c +++ b/fs/ext4/ext4_write.c @@ -21,6 +21,7 @@ */ +#include <common.h> #include <blk.h> #include <log.h> #include <malloc.h> diff --git a/fs/ext4/ext4fs.c b/fs/ext4/ext4fs.c index da59cb008fc..33e200ffa3c 100644 --- a/fs/ext4/ext4fs.c +++ b/fs/ext4/ext4fs.c @@ -20,6 +20,7 @@ * ext4write : Based on generic ext4 protocol. */ +#include <common.h> #include <blk.h> #include <ext_common.h> #include <ext4fs.h> diff --git a/fs/fat/fat.c b/fs/fat/fat.c index e2570e81676..2dd9d4e72dc 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -10,6 +10,7 @@ #define LOG_CATEGORY LOGC_FS +#include <common.h> #include <blk.h> #include <config.h> #include <exports.h> diff --git a/fs/fat/fat_write.c b/fs/fat/fat_write.c index ea877ee9171..c8e0fbf1a3b 100644 --- a/fs/fat/fat_write.c +++ b/fs/fat/fat_write.c @@ -7,6 +7,7 @@ #define LOG_CATEGORY LOGC_FS +#include <common.h> #include <command.h> #include <config.h> #include <div64.h> @@ -9,6 +9,7 @@ #include <config.h> #include <display_options.h> #include <errno.h> +#include <common.h> #include <env.h> #include <lmb.h> #include <log.h> @@ -20,7 +21,6 @@ #include <fs.h> #include <sandboxfs.h> #include <semihostingfs.h> -#include <time.h> #include <ubifs_uboot.h> #include <btrfs.h> #include <asm/global_data.h> diff --git a/fs/fs_internal.c b/fs/fs_internal.c index 51c1719361b..111f91b355d 100644 --- a/fs/fs_internal.c +++ b/fs/fs_internal.c @@ -7,6 +7,7 @@ #define LOG_CATEGORY LOGC_CORE +#include <common.h> #include <blk.h> #include <compiler.h> #include <log.h> diff --git a/fs/jffs2/compr_zlib.c b/fs/jffs2/compr_zlib.c index e1e3c15e75e..d306b6dc4cf 100644 --- a/fs/jffs2/compr_zlib.c +++ b/fs/jffs2/compr_zlib.c @@ -35,6 +35,8 @@ * */ +#include <common.h> +#include <config.h> #include <jffs2/jffs2.h> #include <jffs2/mini_inflate.h> diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index 5b7d7f4ae88..49ba82ef959 100644 --- a/fs/jffs2/jffs2_1pass.c +++ b/fs/jffs2/jffs2_1pass.c @@ -111,6 +111,7 @@ */ +#include <common.h> #include <config.h> #include <malloc.h> #include <div64.h> diff --git a/fs/jffs2/mergesort.c b/fs/jffs2/mergesort.c index 495937d792d..fca77aa6511 100644 --- a/fs/jffs2/mergesort.c +++ b/fs/jffs2/mergesort.c @@ -7,6 +7,7 @@ * http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html */ +#include <common.h> #include "jffs2_private.h" int sort_list(struct b_list *list) diff --git a/fs/sandbox/host_bootdev.c b/fs/sandbox/host_bootdev.c index 3f74972a9f8..3ef53627608 100644 --- a/fs/sandbox/host_bootdev.c +++ b/fs/sandbox/host_bootdev.c @@ -6,6 +6,7 @@ * Written by Simon Glass <sjg@chromium.org> */ +#include <common.h> #include <bootdev.h> #include <bootflow.h> #include <bootmeth.h> diff --git a/fs/sandbox/sandboxfs.c b/fs/sandbox/sandboxfs.c index 773b583fa43..4ae41d5b4db 100644 --- a/fs/sandbox/sandboxfs.c +++ b/fs/sandbox/sandboxfs.c @@ -3,7 +3,7 @@ * Copyright (c) 2012, Google Inc. */ -#include <stdio.h> +#include <common.h> #include <fs.h> #include <malloc.h> #include <os.h> diff --git a/fs/semihostingfs.c b/fs/semihostingfs.c index 77e39ca407e..3592338a686 100644 --- a/fs/semihostingfs.c +++ b/fs/semihostingfs.c @@ -4,7 +4,7 @@ * Copyright (c) 2012, Google Inc. */ -#include <stdio.h> +#include <common.h> #include <fs.h> #include <malloc.h> #include <os.h> diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 788f88f0495..3e7160352e6 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -29,6 +29,7 @@ #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 75de01e95f7..a509584e5d7 100644 --- a/fs/ubifs/ubifs.c +++ b/fs/ubifs/ubifs.c @@ -11,6 +11,7 @@ * Adrian Hunter */ +#include <common.h> #include <env.h> #include <gzip.h> #include <log.h> diff --git a/fs/yaffs2/yaffs_mtdif.c b/fs/yaffs2/yaffs_mtdif.c index 0eec22bc4a5..50fed2d4b15 100644 --- a/fs/yaffs2/yaffs_mtdif.c +++ b/fs/yaffs2/yaffs_mtdif.c @@ -12,6 +12,7 @@ */ /* XXX U-BOOT XXX */ +#include <common.h> #include "yportenv.h" diff --git a/fs/yaffs2/yaffs_mtdif2.c b/fs/yaffs2/yaffs_mtdif2.c index 2bf171f99f1..81a4d964f3e 100644 --- a/fs/yaffs2/yaffs_mtdif2.c +++ b/fs/yaffs2/yaffs_mtdif2.c @@ -14,6 +14,7 @@ /* mtd interface for YAFFS2 */ /* XXX U-BOOT XXX */ +#include <common.h> #include <linux/bug.h> #include <linux/errno.h> diff --git a/fs/yaffs2/yaffs_uboot_glue.c b/fs/yaffs2/yaffs_uboot_glue.c index deddbaac51e..0a920561149 100644 --- a/fs/yaffs2/yaffs_uboot_glue.c +++ b/fs/yaffs2/yaffs_uboot_glue.c @@ -19,6 +19,7 @@ * This version now uses the ydevconfig mechanism to set up partitions. */ +#include <common.h> #include <div64.h> #include <malloc.h> #include <linux/printk.h> diff --git a/fs/zfs/dev.c b/fs/zfs/dev.c index 722c6a86176..fcd9893b3ac 100644 --- a/fs/zfs/dev.c +++ b/fs/zfs/dev.c @@ -8,6 +8,7 @@ */ +#include <common.h> #include <config.h> #include <fs_internal.h> #include <zfs_common.h> diff --git a/fs/zfs/zfs.c b/fs/zfs/zfs.c index c44e7ece5df..bfc11fa6676 100644 --- a/fs/zfs/zfs.c +++ b/fs/zfs/zfs.c @@ -10,6 +10,7 @@ * Copyright 2004 Sun Microsystems, Inc. */ +#include <common.h> #include <log.h> #include <malloc.h> #include <linux/stat.h> diff --git a/fs/zfs/zfs_fletcher.c b/fs/zfs/zfs_fletcher.c index b06c335626a..008a303ec79 100644 --- a/fs/zfs/zfs_fletcher.c +++ b/fs/zfs/zfs_fletcher.c @@ -8,6 +8,7 @@ * Use is subject to license terms. */ +#include <common.h> #include <malloc.h> #include <linux/stat.h> #include <linux/time.h> diff --git a/fs/zfs/zfs_lzjb.c b/fs/zfs/zfs_lzjb.c index e79c5b4278f..b42d4980129 100644 --- a/fs/zfs/zfs_lzjb.c +++ b/fs/zfs/zfs_lzjb.c @@ -8,6 +8,7 @@ * Use is subject to license terms. */ +#include <common.h> #include <malloc.h> #include <linux/stat.h> #include <linux/time.h> diff --git a/fs/zfs/zfs_sha256.c b/fs/zfs/zfs_sha256.c index 602d75254ff..cb5b1c06834 100644 --- a/fs/zfs/zfs_sha256.c +++ b/fs/zfs/zfs_sha256.c @@ -8,6 +8,7 @@ * Use is subject to license terms. */ +#include <common.h> #include <malloc.h> #include <linux/stat.h> #include <linux/time.h> |