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 <marek.vasut+renesas@mailbox.org>
This commit is contained in:
Marek Vasut
2026-03-26 08:29:18 +00:00
committed by Peter Robinson
parent eb95914b9f
commit b04e4b19d4
+1
View File
@@ -7,6 +7,7 @@
#include <phys2bus.h>
#include <asm/arch/mbox.h>
#include <linux/delay.h>
#include <linux/errno.h>
struct msg_set_power_state {
struct bcm2835_mbox_hdr hdr;