[PATCH] smc91x warning fix

A few IO addr type conversions were missing.
  
  Signed-off-by: Nicolas Pitre <nico@cam.org>
  Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
Nicolas Pitre 2005-05-12 20:19:09 -04:00 committed by Jeff Garzik
parent 53155109b6
commit eb1d698813

View file

@ -151,7 +151,7 @@
/* We actually can't write halfwords properly if not word aligned */ /* We actually can't write halfwords properly if not word aligned */
static inline void static inline void
SMC_outw(u16 val, unsigned long ioaddr, int reg) SMC_outw(u16 val, void __iomem *ioaddr, int reg)
{ {
if (reg & 2) { if (reg & 2) {
unsigned int v = val << 16; unsigned int v = val << 16;
@ -317,7 +317,7 @@ static inline void SMC_outsw (unsigned long a, int r, unsigned char* p, int l)
#define SMC_insl(a, r, p, l) \ #define SMC_insl(a, r, p, l) \
smc_pxa_dma_insl(a, lp->physaddr, r, dev->dma, p, l) smc_pxa_dma_insl(a, lp->physaddr, r, dev->dma, p, l)
static inline void static inline void
smc_pxa_dma_insl(u_long ioaddr, u_long physaddr, int reg, int dma, smc_pxa_dma_insl(void __iomem *ioaddr, u_long physaddr, int reg, int dma,
u_char *buf, int len) u_char *buf, int len)
{ {
dma_addr_t dmabuf; dma_addr_t dmabuf;
@ -355,7 +355,7 @@ smc_pxa_dma_insl(u_long ioaddr, u_long physaddr, int reg, int dma,
#define SMC_insw(a, r, p, l) \ #define SMC_insw(a, r, p, l) \
smc_pxa_dma_insw(a, lp->physaddr, r, dev->dma, p, l) smc_pxa_dma_insw(a, lp->physaddr, r, dev->dma, p, l)
static inline void static inline void
smc_pxa_dma_insw(u_long ioaddr, u_long physaddr, int reg, int dma, smc_pxa_dma_insw(void __iomem *ioaddr, u_long physaddr, int reg, int dma,
u_char *buf, int len) u_char *buf, int len)
{ {
dma_addr_t dmabuf; dma_addr_t dmabuf;