hpilo: fix pointer warning in ilo_ccb_setup

Fix i386 PAE compile warning:

drivers/misc/hpilo.c: In function `ilo_ccb_setup':
drivers/misc/hpilo.c:274: warning: cast to pointer from integer of different size

dma_addr_t is 64 on i386 PAE which causes a size mismatch.

Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Acked-by: David Altobelli <david.altobelli@hp.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Prarit Bhargava
2010-08-09 17:20:27 -07:00
committed by Linus Torvalds
parent 7efe15f2a4
commit cdf8afca24
2 changed files with 13 additions and 12 deletions

View File

@@ -79,21 +79,21 @@ struct ilo_hwinfo {
struct ccb {
union {
char *send_fifobar;
u64 padding1;
u64 send_fifobar_pa;
} ccb_u1;
union {
char *send_desc;
u64 padding2;
u64 send_desc_pa;
} ccb_u2;
u64 send_ctrl;
union {
char *recv_fifobar;
u64 padding3;
u64 recv_fifobar_pa;
} ccb_u3;
union {
char *recv_desc;
u64 padding4;
u64 recv_desc_pa;
} ccb_u4;
u64 recv_ctrl;