diff options
| author | Tom Rini <[email protected]> | 2023-12-14 13:16:52 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-12-21 08:54:37 -0500 |
| commit | 071cf2767f832ec89eff40a476903d4ac5240dcf (patch) | |
| tree | eebced19784de0d4856efbc8a67820a6dc9ba1d3 /include | |
| parent | f90dee1a397520460b7a9693c2cce302e959c9fd (diff) | |
global: Rework architecture global_data.h to include <linux/types.h>
In most cases, the architecture global data currently makes use of
assorted linux types, but does not include <linux/types.h> to provide
them. Add <linux/types.h> instead of relying on indirect inclusion.
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/system-constants.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/system-constants.h b/include/system-constants.h index d688629f119..e09fc418a47 100644 --- a/include/system-constants.h +++ b/include/system-constants.h @@ -3,6 +3,8 @@ #ifndef __SYSTEM_CONSTANTS_H__ #define __SYSTEM_CONSTANTS_H__ +#include <config.h> + /* * The most common case for our initial stack pointer address is to * say that we have defined a static intiial ram address location and |
