summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2011-02-24 17:23:09 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-04-21 14:32:24 -0700
commitf57e91ef4769159b5dd5c697afcf6cca22db46f5 (patch)
treee1df14d674cf98dfa3a6bbb9a7c6473aa92cd7d5 /mm
parent98cf27b486964537b26a515ab91cb233d416e300 (diff)
mca.c: Fix cast from integer to pointer warning
commit c1d036c4d1cb00b7e8473a2ad0a78f13e13a8183 upstream. 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> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'mm')
0 files changed, 0 insertions, 0 deletions