diff options
author | Max Krummenacher | 2024-01-18 19:10:47 +0100 |
---|---|---|
committer | Tom Rini | 2024-01-24 11:12:11 -0500 |
commit | e2e69291ee6031eccf50113fdd12099a1a7d44ba (patch) | |
tree | 0739009b7e6e5bb081e17b38f46734850d196eb5 /include/power | |
parent | cc7e3d1929342f9beb998933e26ce5e89d52a8fb (diff) |
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/power')
-rw-r--r-- | include/power/regulator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/power/regulator.h b/include/power/regulator.h index 200652cb3d7..bb07a814c79 100644 --- a/include/power/regulator.h +++ b/include/power/regulator.h @@ -7,6 +7,8 @@ #ifndef _INCLUDE_REGULATOR_H_ #define _INCLUDE_REGULATOR_H_ +#include <linux/errno.h> + struct udevice; /** |