| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH] Fix compiler warning in vpe.c |
| From: | Raghu Gandham <raghu@mips.com> |
| Date: | Fri, 10 Jul 2009 02:01:32 -0700 |
| Cc: | raghu@mips.com, chris@mips.com |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | StGIT/0.14.3 |
Signed-off-by: Raghu Gandham (raghu@mips.com)
---
arch/mips/kernel/vpe.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c
index 07b9ec2..3d4ef84 100644
--- a/arch/mips/kernel/vpe.c
+++ b/arch/mips/kernel/vpe.c
@@ -327,7 +327,8 @@ static void layout_sections(struct module *mod, const
Elf_Ehdr * hdr,
|| (s->sh_flags & masks[m][1])
|| s->sh_entsize != ~0UL)
continue;
- s->sh_entsize = get_offset(&mod->core_size, s);
+ s->sh_entsize =
+ get_offset((unsigned long *)&mod->core_size, s);
}
if (m == 0)
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] APRP Patch04: Propagate final value of max_low_pfn to max_pfn, Raghu Gandham |
|---|---|
| Next by Date: | [PATCH 0/2] Port MT and SMTC changes from linux-mti, Raghu Gandham |
| Previous by Thread: | [PATCH] APRP Patch04: Propagate final value of max_low_pfn to max_pfn, Raghu Gandham |
| Next by Thread: | [PATCH 0/2] Port MT and SMTC changes from linux-mti, Raghu Gandham |
| Indexes: | [Date] [Thread] [Top] [All Lists] |