diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-27 08:10:55 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:05:03 -0600 |
commit | 5c4bcc7c73997ce5dfd1bcbdac6f7318170eec1e (patch) | |
tree | 3eef5fd7cec8f46076fa33439b394dc2fe96303e /arch/sh/lib/zimageboot.c | |
parent | bac5d1b68a782650f6ce2d495e700444dd9d7e01 (diff) |
sh: Remove <common.h> and add needed includes
Remove <common.h> from all sh architecture files and when needed add
missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/sh/lib/zimageboot.c')
-rw-r--r-- | arch/sh/lib/zimageboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/lib/zimageboot.c b/arch/sh/lib/zimageboot.c index c2e285ff0f6..e731c6a7cb3 100644 --- a/arch/sh/lib/zimageboot.c +++ b/arch/sh/lib/zimageboot.c @@ -9,10 +9,10 @@ * Linux SuperH zImage loading and boot */ -#include <common.h> #include <command.h> #include <env.h> #include <irq_func.h> +#include <vsprintf.h> #include <asm/io.h> #include <asm/zimage.h> |