2010-07-07 11:12:45 +00:00
|
|
|
From: Jeff Mahoney <jeffm@suse.com>
|
|
|
|
Subject: ia64/mca: Fix cast from integer to pointer warning
|
2011-04-19 20:09:59 +00:00
|
|
|
Patch-mainline: Submitted 24 Feb 2011
|
2010-07-07 11:12:45 +00:00
|
|
|
|
2011-04-19 20:09:59 +00:00
|
|
|
ia64_mca_cpu_init has a void *data local variable that is assigned
|
|
|
|
the value from either __get_free_pages() or mca_bootmem(). The problem
|
|
|
|
is that __get_free_pages returns an unsigned long and mca_bootmem, via
|
|
|
|
alloc_bootmem(), returns a void *. format_mca_init_stack takes the void *,
|
|
|
|
and it's also used with __pa(), but that casts it to long anyway.
|
|
|
|
|
|
|
|
This results in the following build warning:
|
|
|
|
|
|
|
|
arch/ia64/kernel/mca.c:1898: warning: assignment makes pointer from
|
|
|
|
integer without a cast
|
|
|
|
|
|
|
|
This patch casts the return of __get_free_pages to a void * to avoid
|
|
|
|
the warning.
|
2010-07-07 11:12:45 +00:00
|
|
|
|
|
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
|
|
---
|
|
|
|
arch/ia64/kernel/mca.c | 3 ++-
|
|
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
--- a/arch/ia64/kernel/mca.c
|
|
|
|
+++ b/arch/ia64/kernel/mca.c
|
2011-04-19 20:09:59 +00:00
|
|
|
@@ -1859,7 +1859,8 @@ ia64_mca_cpu_init(void *cpu_data)
|
2010-07-07 11:12:45 +00:00
|
|
|
data = mca_bootmem();
|
|
|
|
first_time = 0;
|
|
|
|
} else
|
|
|
|
- data = __get_free_pages(GFP_KERNEL, get_order(sz));
|
|
|
|
+ data = (void *)__get_free_pages(GFP_KERNEL,
|
|
|
|
+ get_order(sz));
|
|
|
|
if (!data)
|
|
|
|
panic("Could not allocate MCA memory for cpu %d\n",
|
|
|
|
cpu);
|