]> git.karo-electronics.de Git - karo-tx-linux.git/commit
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)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Wed, 14 Mar 2012 14:57:11 +0000 (10:57 -0400)
commita88018dde89c3ca3dcf502e5c0d2fcfdf920a528
tree728f9bcc517f70ce42e2393d9f36f1cdc7992444
parent247b2640a7e2c16fd37bc8b68185b500e51d3ee0
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: Paul Gortmaker <paul.gortmaker@windriver.com>
arch/ia64/kernel/mca.c