From b04e4b19d4ddff2226a06b6b19f890b6df58e719 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Mon, 16 Mar 2026 00:58:06 +0100 Subject: arm: bcm: Include missing errno.h The msg.c file uses EIO macro defined in errno.h , include errno.h to avoid build failure: " arch/arm/mach-bcm283x/msg.c: In function 'bcm2835_power_on_module': arch/arm/mach-bcm283x/msg.c:73:25: error: 'EIO' undeclared (first use in this function) 73 | return -EIO; | ^~~ " Signed-off-by: Marek Vasut --- arch/arm/mach-bcm283x/msg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-bcm283x/msg.c b/arch/arm/mach-bcm283x/msg.c index 4993c0bdb81..05e1a02e80f 100644 --- a/arch/arm/mach-bcm283x/msg.c +++ b/arch/arm/mach-bcm283x/msg.c @@ -7,6 +7,7 @@ #include #include #include +#include struct msg_set_power_state { struct bcm2835_mbox_hdr hdr; -- cgit v1.2.3 From 4e64ea88585d9650af867718e1c629a1e57c0157 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 13 Mar 2026 17:08:36 +0000 Subject: rpi: Update the naming for bcm2712 SoC RevD naming The downstream Raspberry Pi uses two namings for the revD SoC device trees, both bcm2712d0-rpi-5-b and bcm2712-d-rpi-5-b but it seems upstream has settled on just the later, so lets use that as it's the name that maps both upstream and downstream. Fixes: c15a7919725 ("board/raspberrypi: add bcm2712d0-rpi-5-b for Raspberry Pi 5") Signed-off-by: Peter Robinson Reviewed-by: Matthias Brugger --- board/raspberrypi/rpi/rpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index 7f69e5b6163..b0a1484c0fa 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -199,7 +199,7 @@ static const struct rpi_model rpi_models_new_scheme[] = { "5 Model B", FDTFILES( [0] = DTB_DIR "bcm2712-rpi-5-b.dtb", - [1] = DTB_DIR "bcm2712d0-rpi-5-b.dtb" + [1] = DTB_DIR "bcm2712-d-rpi-5-b.dtb" ), true, }, -- cgit v1.2.3