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/cpu.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/cpu.h')
-rw-r--r-- | include/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cpu.h b/include/cpu.h index be02a167129..2077ff30634 100644 --- a/include/cpu.h +++ b/include/cpu.h @@ -7,6 +7,8 @@ #ifndef __CPU_H #define __CPU_H +#include <linux/types.h> + struct udevice; /** |