aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-bcm283x
diff options
context:
space:
mode:
authorNaveen Kumar Chaudhary <naveenchaudhary2010@hotmail.com>2023-08-03 19:09:35 +0530
committerTom Rini <trini@konsulko.com>2023-08-17 16:39:20 -0400
commitea8ddb7e7cdb60070c0ca3bb3ac01f62a19e6ebb (patch)
treedab0592c095d470498c00a21d3b03d23a0cfcd03 /arch/arm/mach-bcm283x
parentfe85863086b1dba3cd266b984f6a882522af5790 (diff)
downloadu-boot-ea8ddb7e7cdb60070c0ca3bb3ac01f62a19e6ebb.zip
u-boot-ea8ddb7e7cdb60070c0ca3bb3ac01f62a19e6ebb.tar.gz
u-boot-ea8ddb7e7cdb60070c0ca3bb3ac01f62a19e6ebb.tar.bz2
arm: bcm283x undefined reference to "print_cpuinfo"
Builds for Raspberry Pi targets fail when CONFIG_DISPLAY_CPUINFO is enabled and following error can be seen - common/board_f.o:(.rodata.init_sequence_f+0x90): undefined reference to `print_cpuinfo' Added implementation of function "print_cpuinfo" Signed-off-by: Naveen Kumar Chaudhary <naveenchaudhary2010@hotmail.com>
Diffstat (limited to 'arch/arm/mach-bcm283x')
-rw-r--r--arch/arm/mach-bcm283x/init.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-bcm283x/init.c b/arch/arm/mach-bcm283x/init.c
index 183650a..7265faf 100644
--- a/arch/arm/mach-bcm283x/init.c
+++ b/arch/arm/mach-bcm283x/init.c
@@ -146,6 +146,14 @@ int mach_cpu_init(void)
return 0;
}
+#if defined(CONFIG_DISPLAY_CPUINFO)
+int print_cpuinfo(void)
+{
+ printf("CPU: BCM283x\n");
+ return 0;
+}
+#endif
+
#ifdef CONFIG_ARMV7_LPAE
#ifdef CONFIG_TARGET_RPI_4_32B
#define BCM2711_RPI4_PCIE_XHCI_MMIO_VIRT 0xffc00000UL