diff options
Diffstat (limited to 'kexec/arch/sh/kexec-sh.c')
-rw-r--r-- | kexec/arch/sh/kexec-sh.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexec/arch/sh/kexec-sh.c b/kexec/arch/sh/kexec-sh.c index d04989d..86bce27 100644 --- a/kexec/arch/sh/kexec-sh.c +++ b/kexec/arch/sh/kexec-sh.c @@ -22,8 +22,8 @@ #define MAX_MEMORY_RANGES 64 static struct memory_range memory_range[MAX_MEMORY_RANGES]; -static int kexec_sh_memory_range_callback(void *data, int nr, - char *str, +static int kexec_sh_memory_range_callback(void *UNUSED(data), int nr, + char *UNUSED(str), unsigned long base, unsigned long length) { @@ -138,12 +138,12 @@ const struct arch_map_entry arches[] = { { 0 }, }; -int arch_compat_trampoline(struct kexec_info *info) +int arch_compat_trampoline(struct kexec_info *UNUSED(info)) { return 0; } -void arch_update_purgatory(struct kexec_info *info) +void arch_update_purgatory(struct kexec_info *UNUSED(info)) { } |