aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-11-20 16:39:46 -0500
committerTom Rini <trini@konsulko.com>2023-11-20 16:39:46 -0500
commit4d863f0dd7ce40ab1f5ade4d05cbcfe1bcaf34d9 (patch)
tree6ae0e8d9e39da0f6d5a4c5d3680edd79e32548dd
parent139669ab5e5d24ff6b03c468d8eaa26e94c45334 (diff)
downloadu-boot-4d863f0dd7ce40ab1f5ade4d05cbcfe1bcaf34d9.zip
u-boot-4d863f0dd7ce40ab1f5ade4d05cbcfe1bcaf34d9.tar.gz
u-boot-4d863f0dd7ce40ab1f5ade4d05cbcfe1bcaf34d9.tar.bz2
sandbox: Add <linux/types.h> to asm/global_data.h
We need <linux/types.h> here as we use "ulong". Signed-off-by: Tom Rini <trini@konsulko.com> --- Cc: Simon Glass <sjg@chromium.org>
-rw-r--r--arch/sandbox/include/asm/global_data.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/global_data.h b/arch/sandbox/include/asm/global_data.h
index c697773..001b2b5 100644
--- a/arch/sandbox/include/asm/global_data.h
+++ b/arch/sandbox/include/asm/global_data.h
@@ -9,6 +9,8 @@
#ifndef __ASM_GBL_DATA_H
#define __ASM_GBL_DATA_H
+#include <linux/types.h>
+
/* Architecture-specific global data */
struct arch_global_data {
uint8_t *ram_buf; /* emulated RAM buffer */