diff options
author | Tom Rini | 2023-10-12 19:03:54 -0400 |
---|---|---|
committer | Tom Rini | 2023-10-24 16:34:45 -0400 |
commit | 12c00f9e8b3e7987cfc5243f5b3edbe6c9fdfdc2 (patch) | |
tree | 70b653712ede83bc7f4020c5c1fb0433127837c7 /include/bootstage.h | |
parent | 2f34b0331a60239b7708f125ad621e4e62f51803 (diff) |
include: Add <linux/types.h> in a few places
These files references a number of types that are defined in
<linux/types.h> (and so forth), so include it here rather than rely on
indirect inclusion.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/bootstage.h')
-rw-r--r-- | include/bootstage.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bootstage.h b/include/bootstage.h index f9376c320c9..affb0e5c6a6 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -11,6 +11,7 @@ #ifndef _BOOTSTAGE_H #define _BOOTSTAGE_H +#include <linux/types.h> #include <linux/kconfig.h> /* Flags for each bootstage record */ |