diff options
| author | Peng Fan <[email protected]> | 2026-02-09 09:30:10 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-17 13:50:22 -0600 |
| commit | afbeb3a0922e5337e5b473369245e2fe55cac9c5 (patch) | |
| tree | 1c355cebe4f7273c6de18501eda024d625972c23 | |
| parent | 68ab09e3a2986b570a249d6c1b12baac0e539274 (diff) | |
xtensa: relocate: Add missing headers
memset and size_t are used in this file, so add missing headers.
Signed-off-by: Peng Fan <[email protected]>
| -rw-r--r-- | arch/xtensa/lib/relocate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/xtensa/lib/relocate.c b/arch/xtensa/lib/relocate.c index a499590c75b..d3d317edf88 100644 --- a/arch/xtensa/lib/relocate.c +++ b/arch/xtensa/lib/relocate.c @@ -4,6 +4,8 @@ */ #include <relocate.h> +#include <linux/string.h> +#include <linux/types.h> #include <asm/sections.h> #include <asm/string.h> |
