aboutsummaryrefslogtreecommitdiff
path: root/include/i2c_eeprom.h
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2024-01-18 19:10:47 +0100
committerTom Rini <trini@konsulko.com>2024-01-24 11:12:11 -0500
commite2e69291ee6031eccf50113fdd12099a1a7d44ba (patch)
tree0739009b7e6e5bb081e17b38f46734850d196eb5 /include/i2c_eeprom.h
parentcc7e3d1929342f9beb998933e26ce5e89d52a8fb (diff)
downloadu-boot-e2e69291ee6031eccf50113fdd12099a1a7d44ba.zip
u-boot-e2e69291ee6031eccf50113fdd12099a1a7d44ba.tar.gz
u-boot-e2e69291ee6031eccf50113fdd12099a1a7d44ba.tar.bz2
headers: don't depend on errno.h being available
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>
Diffstat (limited to 'include/i2c_eeprom.h')
-rw-r--r--include/i2c_eeprom.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/i2c_eeprom.h b/include/i2c_eeprom.h
index 32dcb03..cba991e 100644
--- a/include/i2c_eeprom.h
+++ b/include/i2c_eeprom.h
@@ -6,6 +6,8 @@
#ifndef __I2C_EEPROM
#define __I2C_EEPROM
+#include <linux/errno.h>
+
struct udevice;
struct i2c_eeprom_ops {