aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/parisc/lba_pci.c
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2006-10-26 10:06:07 -0600
committerKyle McMartin <kyle@ubuntu.com>2006-12-08 00:34:33 -0500
commitc2c4798e04ef836b12f5df04e7d1a1710cb39301 (patch)
tree244ce029f8032150523d91e83c14874dba1a13e7 /drivers/parisc/lba_pci.c
parent[PARISC] parisc-agp: Fix integer/pointer warning (diff)
downloadlinux-dev-c2c4798e04ef836b12f5df04e7d1a1710cb39301.tar.xz
linux-dev-c2c4798e04ef836b12f5df04e7d1a1710cb39301.zip
[PARISC] sparse fixes
0/NULL, missing __user, missing __iomem, non-ANSI prototype. Signed-off-by: Matthew Wilcox <willy@parisc-linux.org> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'drivers/parisc/lba_pci.c')
-rw-r--r--drivers/parisc/lba_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/lba_pci.c b/drivers/parisc/lba_pci.c
index ba6769934c77..ad4a1a12a1ae 100644
--- a/drivers/parisc/lba_pci.c
+++ b/drivers/parisc/lba_pci.c
@@ -980,7 +980,7 @@ LBA_PORT_IN(32, 0)
#define LBA_PORT_OUT(size, mask) \
static void lba_pat_out##size (struct pci_hba_data *l, u16 addr, u##size val) \
{ \
- void *where = (void *) PIOP_TO_GMMIO(LBA_DEV(l), addr); \
+ void __iomem *where = PIOP_TO_GMMIO(LBA_DEV(l), addr); \
DBG_PORT("%s(0x%p, 0x%x, 0x%x)\n", __FUNCTION__, l, addr, val); \
WRITE_REG##size(val, where); \
/* flush the I/O down to the elroy at least */ \