diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:30:24 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:41 -0600 |
commit | a37323a2cb6ef73a1e68fc81a24c2e77c087fb18 (patch) | |
tree | 917f552b988221299473667bf771b3f8cdb2cfc9 /include/i2c_eeprom.h | |
parent | 05762344602d5086c06af943bbadf74bc545fdbd (diff) | |
download | u-boot-a37323a2cb6ef73a1e68fc81a24c2e77c087fb18.tar.gz |
include: Add missing <linux/types.h>
These files have many "Linux" style types in them, add <linux/types.h>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/i2c_eeprom.h')
-rw-r--r-- | include/i2c_eeprom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/i2c_eeprom.h b/include/i2c_eeprom.h index cba991e3574..1fe32d2dd68 100644 --- a/include/i2c_eeprom.h +++ b/include/i2c_eeprom.h @@ -7,6 +7,7 @@ #define __I2C_EEPROM #include <linux/errno.h> +#include <linux/types.h> struct udevice; |