]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
headers: don't depend on errno.h being available
authorMax Krummenacher <max.krummenacher@toradex.com>
Thu, 18 Jan 2024 18:10:47 +0000 (19:10 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 24 Jan 2024 16:12:11 +0000 (11:12 -0500)
These headers follow the pattern:

| #if CONFIG_IS_ENABLED(FANCY_FEATURE)
|   void foo(void);
| #else
|   static inline void foo(void) { return -ENOSYS; }
| #endif

In the #else path ENOSYS is used, however linux/errno.h is not included.
If errno.h has not been included already the compiler errors out even
if the inline function is not referenced.

Make those headers self contained.

Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Reviewed-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
12 files changed:
include/dfu.h
include/dm/pinctrl.h
include/hwspinlock.h
include/i2c_eeprom.h
include/nvmem.h
include/power-domain.h
include/power/regulator.h
include/remoteproc.h
include/soc.h
include/spi-mem.h
include/sysinfo.h
include/tlv_eeprom.h

index 2f42781888ad426d2e2b18a7896dd15040853f17..fa1918cd6635533bffa402412863f8df472c9955 100644 (file)
@@ -10,6 +10,7 @@
 #ifndef __DFU_ENTITY_H_
 #define __DFU_ENTITY_H_
 
+#include <linux/errno.h>
 #include <linux/list.h>
 #include <mmc.h>
 #include <spi_flash.h>
index 70d8cc5ecac075ec3d9955de018c423ea98b63c2..e41baea6200c313ed2a3d1ef595979665a3acac5 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef __PINCTRL_H
 #define __PINCTRL_H
 
+#include <linux/errno.h>
+
 #define PINNAME_SIZE   10
 #define PINMUX_SIZE    90
 
index d8556c0b4b4b1de6f702dfa354dccd27dcb553ca..dd5135442ec6a9e0dc32ceaedaa3a4546325e036 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef _HWSPINLOCK_H_
 #define _HWSPINLOCK_H_
 
+#include <linux/errno.h>
+
 /**
  * Implement a hwspinlock uclass.
  * Hardware spinlocks are used to perform hardware protection of
index 32dcb03497309681f44f0c1e8aa740a2d15a35db..cba991e3574f7402639428c8af54d41ddb4c486d 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef __I2C_EEPROM
 #define __I2C_EEPROM
 
+#include <linux/errno.h>
+
 struct udevice;
 
 struct i2c_eeprom_ops {
index 822e698bdd484a21861e7c9cdc2a218b7ecb520d..e6a8a98828b3cd222d84c4ce854313a8425a2354 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef NVMEM_H
 #define NVMEM_H
 
+#include <linux/errno.h>
+
 /**
  * DOC: Design
  *
index 2ff6c77cd765fe3791b8939d96c1c6abfb9f69b6..18525073e5e3534fcbac6fae4e18462f29a4dc49 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef _POWER_DOMAIN_H
 #define _POWER_DOMAIN_H
 
+#include <linux/errno.h>
+
 /**
  * A power domain is a portion of an SoC or chip that is powered by a
  * switchable source of power. In many cases, software has control over the
index 200652cb3d7a032b55cb2820e4af1400eb40b11a..bb07a814c797f11e4240306914569cf5603a205b 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef _INCLUDE_REGULATOR_H_
 #define _INCLUDE_REGULATOR_H_
 
+#include <linux/errno.h>
+
 struct udevice;
 
 /**
index a11dc8a9b6c9fee5a473e9ffb86a064d23527345..91a88791a470dd689a753efff0ab7566b0a8da0a 100644 (file)
@@ -14,6 +14,7 @@
  * platforms have moved to dm/fdt.
  */
 #include <dm/platdata.h>       /* For platform data support - non dt world */
+#include <linux/errno.h>
 
 /**
  * struct fw_rsc_hdr - firmware resource entry header
index 850db28b76a318a27c5290d1911a4dea4a81a75c..b8cfc5077060a6c022d42be222bc1cd338003050 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef __SOC_H
 #define __SOC_H
 
+#include <linux/errno.h>
+
 #define SOC_MAX_STR_SIZE       128
 
 struct udevice;
index b07cf2ed83dce5c94800660ae15242a7087e58e1..3c8e95b6f536a3138d98c967cc55d88dc032d5d4 100644 (file)
@@ -11,6 +11,8 @@
 #ifndef __UBOOT_SPI_MEM_H
 #define __UBOOT_SPI_MEM_H
 
+#include <linux/errno.h>
+
 struct udevice;
 
 #define SPI_MEM_OP_CMD(__opcode, __buswidth)                   \
index f2c1aa29d18ed3bdb82cf117da4d6b372eeaae3b..524c7d6b223f9eef98982e3601c59187e6548dbf 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef __SYSINFO_H__
 #define __SYSINFO_H__
 
+#include <linux/errno.h>
+
 struct udevice;
 
 /*
index fd45e5f6ebb65f3018fa85b7bca3591e9fa64439..2b1e19b2bddf848b19c6f148e19f6c524478c943 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef __TLV_EEPROM_H_
 #define __TLV_EEPROM_H_
 
+#include <linux/errno.h>
+
 /*
  *  The Definition of the TlvInfo EEPROM format can be found at onie.org or
  *  github.com/onie