From: Peng Fan <[email protected]> memset and size_t are used in this file, so add missing headers.
Signed-off-by: Peng Fan <[email protected]> --- arch/xtensa/lib/relocate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/xtensa/lib/relocate.c b/arch/xtensa/lib/relocate.c index a499590c75bc5f143ef9dd008b36262b63e027de..d3d317edf88fe433908ffb2300f8f8733415d1fc 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> -- 2.37.1

