mca.c: Fix cast from integer to pointer warning
authorJeff Mahoney <jeffm@suse.com>
Thu, 24 Feb 2011 22:23:09 +0000 (17:23 -0500)
committerBrad Figg <brad.figg@canonical.com>
Wed, 27 Apr 2011 18:41:50 +0000 (11:41 -0700)
commit5e15b1821de636117f21d0933c133641a1ed3d62
tree5b38d8cdafe9b225b9a8fc6115892627f9eba56c
parentec43c5dd9b9d8762a2968643518c6480fc78c596
mca.c: Fix cast from integer to pointer warning

BugLink: http://bugs.launchpad.net/bugs/769042

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>
Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
arch/ia64/kernel/mca.c