]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spi: Remove unused NEEDS_MANUAL_RELOC code bits
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Wed, 6 Sep 2023 21:30:11 +0000 (23:30 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 14 Sep 2023 14:42:25 +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>
drivers/spi/spi-uclass.c

index c929e7c1d0e9aafdc252e90f85236d0ebdb2f3ad..f4795e68672fedbdc1613409d025c6edddb79355 100644 (file)
@@ -196,38 +196,6 @@ static int spi_post_probe(struct udevice *bus)
 
                spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
        }
-#if defined(CONFIG_NEEDS_MANUAL_RELOC)
-       struct dm_spi_ops *ops = spi_get_ops(bus);
-       static int reloc_done;
-
-       if (!reloc_done) {
-               if (ops->claim_bus)
-                       ops->claim_bus += gd->reloc_off;
-               if (ops->release_bus)
-                       ops->release_bus += gd->reloc_off;
-               if (ops->set_wordlen)
-                       ops->set_wordlen += gd->reloc_off;
-               if (ops->xfer)
-                       ops->xfer += gd->reloc_off;
-               if (ops->set_speed)
-                       ops->set_speed += gd->reloc_off;
-               if (ops->set_mode)
-                       ops->set_mode += gd->reloc_off;
-               if (ops->cs_info)
-                       ops->cs_info += gd->reloc_off;
-               if (ops->mem_ops) {
-                       struct spi_controller_mem_ops *mem_ops =
-                               (struct spi_controller_mem_ops *)ops->mem_ops;
-                       if (mem_ops->adjust_op_size)
-                               mem_ops->adjust_op_size += gd->reloc_off;
-                       if (mem_ops->supports_op)
-                               mem_ops->supports_op += gd->reloc_off;
-                       if (mem_ops->exec_op)
-                               mem_ops->exec_op += gd->reloc_off;
-               }
-               reloc_done++;
-       }
-#endif
 
        return 0;
 }