diff options
author | Jeff Mahoney <jeffm@suse.com> | 2011-02-24 17:23:09 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2011-03-02 17:02:50 -0500 |
commit | c1d036c4d1cb00b7e8473a2ad0a78f13e13a8183 (patch) | |
tree | 1a63a31822c30ba4788b396307e213268266c461 /arch/ia64/kernel/mca.c | |
parent | ad7b67e5118738e49a14751944528eb26fd8d718 (diff) |
[IA64] mca.c: Fix cast from integer to pointer warning
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
Cast the return of __get_free_pages to a void * to avoid
the warning.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/mca.c')
-rw-r--r-- | arch/ia64/kernel/mca.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c index e50d54e97f06..80d50b83d419 100644 --- a/arch/ia64/kernel/mca.c +++ b/arch/ia64/kernel/mca.c | |||
@@ -1861,7 +1861,8 @@ ia64_mca_cpu_init(void *cpu_data) | |||
1861 | data = mca_bootmem(); | 1861 | data = mca_bootmem(); |
1862 | first_time = 0; | 1862 | first_time = 0; |
1863 | } else | 1863 | } else |
1864 | data = __get_free_pages(GFP_KERNEL, get_order(sz)); | 1864 | data = (void *)__get_free_pages(GFP_KERNEL, |
1865 | get_order(sz)); | ||
1865 | if (!data) | 1866 | if (!data) |
1866 | panic("Could not allocate MCA memory for cpu %d\n", | 1867 | panic("Could not allocate MCA memory for cpu %d\n", |
1867 | cpu); | 1868 | cpu); |