summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAriel D'Alessandro <[email protected]>2022-09-27 11:24:53 -0300
committerStefano Babic <[email protected]>2022-10-21 11:54:13 +0200
commit187da7226c2c01499a98fd6ac088b9a1c5f3b07b (patch)
treea00be660f8d300f5324109d5757d5f69ebf75c02 /include
parent1703a7c4c2e2527c53e9c2ee4e1c57504cfb649f (diff)
nitrogen6x: Remove extra quotes in fdtfile
After commit 395110284b56 ("nitrogen6x: Populate FDTFILE at build-time for all platforms") iMX.6Q Sabrelite fails to boot due to a bad fdtfile string: Retrieving file: /dtbs/5.18.0-0.deb11.4-armmp/"imx6q-sabrelite".dtb ** File not found /dtbs/5.18.0-0.deb11.4-armmp/"imx6q-sabrelite".dtb ** CONFIG_DEFAULT_DEVICE_TREE option is string typed, so __stringify() is adding extra quotes. Remove this. Signed-off-by: Ariel D'Alessandro <[email protected]> Reviewed-by: Fabio Estevam <[email protected]> Acked-by: Troy Kisky <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/nitrogen6x.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h
index 2007b48868f..26e6de2d2c8 100644
--- a/include/configs/nitrogen6x.h
+++ b/include/configs/nitrogen6x.h
@@ -76,7 +76,7 @@
"fdt_high=0xffffffff\0" \
"initrd_high=0xffffffff\0" \
"fdt_addr_r=0x18000000\0" \
- "fdtfile=" __stringify(CONFIG_DEFAULT_DEVICE_TREE) ".dtb\0" \
+ "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
"kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
"pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
"scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \