]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: Drop ad-hoc device declarations in SPL
authorSimon Glass <sjg@chromium.org>
Sat, 3 Oct 2020 17:31:23 +0000 (11:31 -0600)
committerSimon Glass <sjg@chromium.org>
Thu, 29 Oct 2020 20:42:17 +0000 (14:42 -0600)
Since sandbox's SPL is build with of-platadata, we should not use
U_BOOT_DEVICE() declarations as well. Drop them.

Signed-off-by: Simon Glass <sjg@chromium.org>
board/sandbox/sandbox.c
drivers/serial/sandbox.c
drivers/sysreset/sysreset_sandbox.c

index 937ce28411148dd352c79141a531dfb03f3548ab..18a605de026607afd7499fa8a3ad011e80186456 100644 (file)
  */
 gd_t *gd;
 
+#if !CONFIG_IS_ENABLED(OF_PLATDATA)
 /* Add a simple GPIO device */
 U_BOOT_DEVICE(gpio_sandbox) = {
        .name = "sandbox_gpio",
 };
+#endif
 
 void flush_cache(unsigned long start, unsigned long size)
 {
index f09d291e043c4f2b8c7cdd69ab0f95f547807a4a..db2fbac6295dee88285439b8b8e169030ebed4fc 100644 (file)
@@ -267,6 +267,7 @@ U_BOOT_DRIVER(sandbox_serial) = {
        .flags = DM_FLAG_PRE_RELOC,
 };
 
+#if !CONFIG_IS_ENABLED(OF_PLATDATA)
 static const struct sandbox_serial_platdata platdata_non_fdt = {
        .colour = -1,
 };
@@ -275,4 +276,6 @@ U_BOOT_DEVICE(serial_sandbox_non_fdt) = {
        .name = "sandbox_serial",
        .platdata = &platdata_non_fdt,
 };
+#endif
+
 #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
index 69c22a70008fe5486d06459b4d569c398df93335..71cabd19568eeb12f8ac73fe1e816f85636fa5f5 100644 (file)
@@ -130,7 +130,9 @@ U_BOOT_DRIVER(warm_sysreset_sandbox) = {
        .ops            = &sandbox_warm_sysreset_ops,
 };
 
+#if !CONFIG_IS_ENABLED(OF_PLATDATA)
 /* This is here in case we don't have a device tree */
 U_BOOT_DEVICE(sysreset_sandbox_non_fdt) = {
        .name = "sysreset_sandbox",
 };
+#endif