summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Horman <horms@verge.net.au>2011-03-03 07:14:43 +0900
committerSimon Horman <horms@verge.net.au>2011-03-03 07:14:43 +0900
commit13796a24b83f0acd31261eb98c5101ba235870f0 (patch)
treeff055bb535e7d4407ebda7ee1756b880bc6748fd
parent1100580b05e3fdfe648d9be8617d962b11f4b88b (diff)
downloadkexec-tools-13796a24b83f0acd31261eb98c5101ba235870f0.tar.gz
i386: Mark unused parameters
Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r--kexec/arch/i386/crashdump-x86.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kexec/arch/i386/crashdump-x86.c b/kexec/arch/i386/crashdump-x86.c
index ef4a6f69..d6c9211c 100644
--- a/kexec/arch/i386/crashdump-x86.c
+++ b/kexec/arch/i386/crashdump-x86.c
@@ -37,7 +37,7 @@
extern struct arch_options_t arch_options;
-static int get_kernel_page_offset(struct kexec_info *info,
+static int get_kernel_page_offset(struct kexec_info *UNUSED(info),
struct crash_elf_info *elf_info)
{
int kv;
@@ -63,7 +63,7 @@ static int get_kernel_page_offset(struct kexec_info *info,
/* Read kernel physical load addr from the file returned by proc_iomem()
* (Kernel Code) and store in kexec_info */
-static int get_kernel_paddr(struct kexec_info *info,
+static int get_kernel_paddr(struct kexec_info *UNUSED(info),
struct crash_elf_info *elf_info)
{
uint64_t start;
@@ -93,7 +93,7 @@ static int get_kernel_paddr(struct kexec_info *info,
* hard codes the values to remain backward compatible. Once things stablize
* we should get rid of backward compatible code. */
-static int get_kernel_vaddr_and_size(struct kexec_info *info,
+static int get_kernel_vaddr_and_size(struct kexec_info *UNUSED(info),
struct crash_elf_info *elf_info)
{
int result;