mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-28 21:46:02 -04:00
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:
committed by
Linus Torvalds
parent
7efe15f2a4
commit
cdf8afca24
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user