]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
fs: Remove unused NEEDS_MANUAL_RELOC code bits
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Wed, 6 Sep 2023 21:30:00 +0000 (23:30 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 14 Sep 2023 14:42:24 +0000 (10:42 -0400)
The last user of the NEEDS_MANUAL_RELOC has been removed in commit
26af162ac8f8 ("arch: m68k: Implement relocation")
Remove now unused NEEDS_MANUAL_RELOC code.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
fs/fs.c

diff --git a/fs/fs.c b/fs/fs.c
index 2b815b1db0fed61086a27528aa5bc9a28efa05c8..cfc781bbb8d810dd50ae518abe0278b4b21c804a 100644 (file)
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -422,22 +422,6 @@ int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
 {
        struct fstype_info *info;
        int part, i;
-#ifdef CONFIG_NEEDS_MANUAL_RELOC
-       static int relocated;
-
-       if (!relocated) {
-               for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
-                               i++, info++) {
-                       info->name += gd->reloc_off;
-                       info->probe += gd->reloc_off;
-                       info->close += gd->reloc_off;
-                       info->ls += gd->reloc_off;
-                       info->read += gd->reloc_off;
-                       info->write += gd->reloc_off;
-               }
-               relocated = 1;
-       }
-#endif
 
        part = part_get_info_by_dev_and_name_or_num(ifname, dev_part_str, &fs_dev_desc,
                                                    &fs_partition, 1);