diff options
| author | Peng Fan <[email protected]> | 2026-02-09 09:30:11 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-17 13:50:22 -0600 |
| commit | 49f60d60f70bf429319d72b85bbf5bb37519a7ae (patch) | |
| tree | 7970fd69f013f77d9e1d40a908e52245ee2776a5 /board | |
| parent | afbeb3a0922e5337e5b473369245e2fe55cac9c5 (diff) | |
toradex: common: Add missing headers
Include linux/types.h and asm-generic/u-boot.h. Missing the two header
files will cause building error after cleaning up usage of
asm/global_data.h.
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/toradex/common/tdx-cfg-block.h | 2 | ||||
| -rw-r--r-- | board/toradex/common/tdx-common.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/board/toradex/common/tdx-cfg-block.h b/board/toradex/common/tdx-cfg-block.h index b28033d8332..067daec0d77 100644 --- a/board/toradex/common/tdx-cfg-block.h +++ b/board/toradex/common/tdx-cfg-block.h @@ -6,6 +6,8 @@ #ifndef _TDX_CFG_BLOCK_H #define _TDX_CFG_BLOCK_H +#include <linux/types.h> + #include "tdx-common.h" struct toradex_hw { diff --git a/board/toradex/common/tdx-common.h b/board/toradex/common/tdx-common.h index d446e9f1d5c..db3369a8f9e 100644 --- a/board/toradex/common/tdx-common.h +++ b/board/toradex/common/tdx-common.h @@ -6,6 +6,8 @@ #ifndef _TDX_COMMON_H #define _TDX_COMMON_H +#include <asm-generic/u-boot.h> + #define TORADEX_USB_PRODUCT_NUM_OFFSET 0x4000 #define TDX_USB_VID 0x1B67 |
