diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-07 04:29:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-10-09 16:52:07 -0400 |
commit | b0a9cf297e587219332ee4acca243627702c2cc9 (patch) | |
tree | c1423a5ff12a3454f25305be6a69ed63dcd5dbd6 /drivers/usb/host/isp1362.h | |
parent | d86a83f4acbded4095a632e861183d117ec7405a (diff) |
USB: isp1362: fix build warnings on 64-bit systems
A bunch of places assumed pointers were 32-bits in size (bit checking and
debug output), but none of these affected runtime functionality.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/isp1362.h')
-rw-r--r-- | drivers/usb/host/isp1362.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/usb/host/isp1362.h b/drivers/usb/host/isp1362.h index fe60f62a32f3..1a253ebf7e50 100644 --- a/drivers/usb/host/isp1362.h +++ b/drivers/usb/host/isp1362.h | |||
@@ -580,7 +580,7 @@ static inline const char *ISP1362_INT_NAME(int n) | |||
580 | 580 | ||
581 | static inline void ALIGNSTAT(struct isp1362_hcd *isp1362_hcd, void *ptr) | 581 | static inline void ALIGNSTAT(struct isp1362_hcd *isp1362_hcd, void *ptr) |
582 | { | 582 | { |
583 | unsigned p = (unsigned)ptr; | 583 | unsigned long p = (unsigned long)ptr; |
584 | if (!(p & 0xf)) | 584 | if (!(p & 0xf)) |
585 | isp1362_hcd->stat16++; | 585 | isp1362_hcd->stat16++; |
586 | else if (!(p & 0x7)) | 586 | else if (!(p & 0x7)) |
@@ -770,7 +770,7 @@ static void isp1362_write_fifo(struct isp1362_hcd *isp1362_hcd, void *buf, u16 l | |||
770 | if (!len) | 770 | if (!len) |
771 | return; | 771 | return; |
772 | 772 | ||
773 | if ((unsigned)dp & 0x1) { | 773 | if ((unsigned long)dp & 0x1) { |
774 | /* not aligned */ | 774 | /* not aligned */ |
775 | for (; len > 1; len -= 2) { | 775 | for (; len > 1; len -= 2) { |
776 | data = *dp++; | 776 | data = *dp++; |
@@ -962,8 +962,8 @@ static void isp1362_read_buffer(struct isp1362_hcd *isp1362_hcd, void *buf, u16 | |||
962 | 962 | ||
963 | isp1362_write_diraddr(isp1362_hcd, offset, len); | 963 | isp1362_write_diraddr(isp1362_hcd, offset, len); |
964 | 964 | ||
965 | DBG(3, "%s: Reading %d byte from buffer @%04x to memory @ %08x\n", __func__, | 965 | DBG(3, "%s: Reading %d byte from buffer @%04x to memory @ %p\n", |
966 | len, offset, (u32)buf); | 966 | __func__, len, offset, buf); |
967 | 967 | ||
968 | isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT); | 968 | isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT); |
969 | _WARN_ON((isp1362_read_reg16(isp1362_hcd, HCuPINT) & HCuPINT_EOT)); | 969 | _WARN_ON((isp1362_read_reg16(isp1362_hcd, HCuPINT) & HCuPINT_EOT)); |
@@ -982,8 +982,8 @@ static void isp1362_write_buffer(struct isp1362_hcd *isp1362_hcd, void *buf, u16 | |||
982 | 982 | ||
983 | isp1362_write_diraddr(isp1362_hcd, offset, len); | 983 | isp1362_write_diraddr(isp1362_hcd, offset, len); |
984 | 984 | ||
985 | DBG(3, "%s: Writing %d byte to buffer @%04x from memory @ %08x\n", __func__, | 985 | DBG(3, "%s: Writing %d byte to buffer @%04x from memory @ %p\n", |
986 | len, offset, (u32)buf); | 986 | __func__, len, offset, buf); |
987 | 987 | ||
988 | isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT); | 988 | isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT); |
989 | _WARN_ON((isp1362_read_reg16(isp1362_hcd, HCuPINT) & HCuPINT_EOT)); | 989 | _WARN_ON((isp1362_read_reg16(isp1362_hcd, HCuPINT) & HCuPINT_EOT)); |