diff options
| author | Simon Glass <[email protected]> | 2024-09-20 09:24:25 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-03 11:52:16 -0600 |
| commit | 99344c847d4fe3da288f430274a514052c29aed1 (patch) | |
| tree | 8ddd85d99008bee1fd1448a553b433ca590248af | |
| parent | efddda8f03f027cf6ed0f1d7e479c87c26247822 (diff) | |
sandbox: Add missing header file
This file uses __aligned so should include the header which defines
that.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | arch/sandbox/include/asm/sections.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/sections.h b/arch/sandbox/include/asm/sections.h index 88837bb35c8..5e1577419b0 100644 --- a/arch/sandbox/include/asm/sections.h +++ b/arch/sandbox/include/asm/sections.h @@ -10,6 +10,7 @@ #define __SANDBOX_SECTIONS_H #include <asm-generic/sections.h> +#include <linux/compiler_attributes.h> struct sandbox_cmdline_option; |
