Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3ac9fbf authored by Hirokazu Takata's avatar Hirokazu Takata Committed by Linus Torvalds
Browse files

[PATCH] m32r: SMC91x driver update



Update SMC91x driver for m32r.

- Remove needless NONCACHE_OFFSET adjustment.
  > [PATCH 2.6.14-rc4] m32r: NONCACHE_OFFSET in _port2addr
  > Change _port2addr() not to add NONCACHE_OFFSET.
  > Adding NONCACHE_OFFSET requires needless address adjusting by a driver
  > using ioremap() like a SMC91x driver.

- Fix lots of warnings as following:
/usr/src/ctest/git/kernel/drivers/net/smc91x.c: In function `smc_reset':
/usr/src/ctest/git/kernel/drivers/net/smc91x.c:324: warning: passing arg 2 of `_outw' makes integer from pointer without a cast
/usr/src/ctest/git/kernel/drivers/net/smc91x.c:325: warning: passing arg 2 of `_outw' makes integer from pointer without a cast
/usr/src/ctest/git/kernel/drivers/net/smc91x.c:341: warning: passing arg 2 of `_outw' makes integer from pointer without a cast
/usr/src/ctest/git/kernel/drivers/net/smc91x.c:342: warning: passing arg 2 of `_outw' makes integer from pointer without a cast
  :
/usr/src/ctest/git/kernel/drivers/net/smc91x.c:1915: warning: passing arg 1 of `_inw' makes integer from pointer without a cast
/usr/src/ctest/git/kernel/drivers/net/smc91x.c:1915: warning: passing arg 1 of `_inw' makes integer from pointer without a cast

Signed-off-by: default avatarHayato Fujiwara <fujiwara@linux-m32r.org>
Signed-off-by: default avatarHirokazu Takata <takata@linux-m32r.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1343f776
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -64,11 +64,11 @@ static inline void *__port2addr_ata(unsigned long port)
 * from 0x10000000 to 0x13ffffff on physical address.
 * from 0x10000000 to 0x13ffffff on physical address.
 * The base address of LAN controller(LAN91C111) is 0x300.
 * The base address of LAN controller(LAN91C111) is 0x300.
 */
 */
#define LAN_IOSTART	0x300
#define LAN_IOSTART	0xa0000300
#define LAN_IOEND	0x320
#define LAN_IOEND	0xa0000320
static inline void *_port2addr_ne(unsigned long port)
static inline void *_port2addr_ne(unsigned long port)
{
{
	return (void *)(port + NONCACHE_OFFSET + 0x10000000);
	return (void *)(port + 0x10000000);
}
}
static inline void *_port2addr_usb(unsigned long port)
static inline void *_port2addr_usb(unsigned long port)
{
{
+4 −5
Original line number Original line Diff line number Diff line
@@ -36,9 +36,6 @@ static inline void *_port2addr(unsigned long port)
	return (void *)(port | (NONCACHE_OFFSET));
	return (void *)(port | (NONCACHE_OFFSET));
}
}


#define LAN_IOSTART	0x300
#define LAN_IOEND	0x320

#if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC)
#if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC)
static inline void *__port2addr_ata(unsigned long port)
static inline void *__port2addr_ata(unsigned long port)
{
{
@@ -59,15 +56,17 @@ static inline void *__port2addr_ata(unsigned long port)
}
}
#endif
#endif


#define LAN_IOSTART	0xa0000300
#define LAN_IOEND	0xa0000320
#ifdef CONFIG_CHIP_OPSP
#ifdef CONFIG_CHIP_OPSP
static inline void *_port2addr_ne(unsigned long port)
static inline void *_port2addr_ne(unsigned long port)
{
{
	return (void *)(port + NONCACHE_OFFSET + 0x10000000);
	return (void *)(port + 0x10000000);
}
}
#else
#else
static inline void *_port2addr_ne(unsigned long port)
static inline void *_port2addr_ne(unsigned long port)
{
{
	return (void *)(port + NONCACHE_OFFSET + 0x04000000);
	return (void *)(port + 0x04000000);
}
}
#endif
#endif
static inline void *_port2addr_usb(unsigned long port)
static inline void *_port2addr_usb(unsigned long port)
+3 −4
Original line number Original line Diff line number Diff line
@@ -36,9 +36,6 @@ static inline void *_port2addr(unsigned long port)
	return (void *)(port + NONCACHE_OFFSET);
	return (void *)(port + NONCACHE_OFFSET);
}
}


#define LAN_IOSTART	0x300
#define LAN_IOEND	0x320

#if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC)
#if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC)
static inline void *__port2addr_ata(unsigned long port)
static inline void *__port2addr_ata(unsigned long port)
{
{
@@ -59,9 +56,11 @@ static inline void *__port2addr_ata(unsigned long port)
}
}
#endif
#endif


#define LAN_IOSTART	0xa0000300
#define LAN_IOEND	0xa0000320
static inline void *_port2addr_ne(unsigned long port)
static inline void *_port2addr_ne(unsigned long port)
{
{
	return (void *)(port + NONCACHE_OFFSET + 0x10000000);
	return (void *)(port + 0x10000000);
}
}


static inline void *_port2addr_usb(unsigned long port)
static inline void *_port2addr_usb(unsigned long port)
+3 −3
Original line number Original line Diff line number Diff line
@@ -44,11 +44,11 @@ static inline void *_port2addr(unsigned long port)
 * from 0x10000000 to 0x13ffffff on physical address.
 * from 0x10000000 to 0x13ffffff on physical address.
 * The base address of LAN controller(LAN91C111) is 0x300.
 * The base address of LAN controller(LAN91C111) is 0x300.
 */
 */
#define LAN_IOSTART	0x300
#define LAN_IOSTART	0xa0000300
#define LAN_IOEND	0x320
#define LAN_IOEND	0xa0000320
static inline void *_port2addr_ne(unsigned long port)
static inline void *_port2addr_ne(unsigned long port)
{
{
	return (void *)(port + NONCACHE_OFFSET + 0x10000000);
	return (void *)(port + 0x10000000);
}
}
static inline void *_port2addr_usb(unsigned long port)
static inline void *_port2addr_usb(unsigned long port)
{
{
+6 −6
Original line number Original line Diff line number Diff line
@@ -230,12 +230,12 @@ SMC_outw(u16 val, void __iomem *ioaddr, int reg)
#define SMC_CAN_USE_16BIT	1
#define SMC_CAN_USE_16BIT	1
#define SMC_CAN_USE_32BIT	0
#define SMC_CAN_USE_32BIT	0


#define SMC_inb(a, r)		inb((a) + (r) - 0xa0000000)
#define SMC_inb(a, r)		inb((u32)a) + (r))
#define SMC_inw(a, r)		inw((a) + (r) - 0xa0000000)
#define SMC_inw(a, r)		inw(((u32)a) + (r))
#define SMC_outb(v, a, r)	outb(v, (a) + (r) - 0xa0000000)
#define SMC_outb(v, a, r)	outb(v, ((u32)a) + (r))
#define SMC_outw(v, a, r)	outw(v, (a) + (r) - 0xa0000000)
#define SMC_outw(v, a, r)	outw(v, ((u32)a) + (r))
#define SMC_insw(a, r, p, l)	insw((a) + (r) - 0xa0000000, p, l)
#define SMC_insw(a, r, p, l)	insw(((u32)a) + (r), p, l)
#define SMC_outsw(a, r, p, l)	outsw((a) + (r) - 0xa0000000, p, l)
#define SMC_outsw(a, r, p, l)	outsw(((u32)a) + (r), p, l)


#define set_irq_type(irq, type)	do {} while(0)
#define set_irq_type(irq, type)	do {} while(0)