You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
pcmcia: replace kio_addr_t with unsigned int everywhere
Remove kio_addr_t, and replace it with unsigned int. No known architecture needs more than 32 bits for IO addresses and ports and having a separate type for it is just messy. Signed-off-by: Olof Johansson <olof@lixom.net> Cc: Christoph Hellwig <hch@lst.de> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Cc: Dominik Brodowski <linux@dominikbrodowski.net> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> 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
ecb8a8472f
commit
906da809c5
@@ -230,10 +230,11 @@ static char mii_preamble_required = 0;
|
||||
static int tc574_config(struct pcmcia_device *link);
|
||||
static void tc574_release(struct pcmcia_device *link);
|
||||
|
||||
static void mdio_sync(kio_addr_t ioaddr, int bits);
|
||||
static int mdio_read(kio_addr_t ioaddr, int phy_id, int location);
|
||||
static void mdio_write(kio_addr_t ioaddr, int phy_id, int location, int value);
|
||||
static unsigned short read_eeprom(kio_addr_t ioaddr, int index);
|
||||
static void mdio_sync(unsigned int ioaddr, int bits);
|
||||
static int mdio_read(unsigned int ioaddr, int phy_id, int location);
|
||||
static void mdio_write(unsigned int ioaddr, int phy_id, int location,
|
||||
int value);
|
||||
static unsigned short read_eeprom(unsigned int ioaddr, int index);
|
||||
static void tc574_wait_for_completion(struct net_device *dev, int cmd);
|
||||
|
||||
static void tc574_reset(struct net_device *dev);
|
||||
@@ -341,7 +342,7 @@ static int tc574_config(struct pcmcia_device *link)
|
||||
tuple_t tuple;
|
||||
__le16 buf[32];
|
||||
int last_fn, last_ret, i, j;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
__be16 *phys_addr;
|
||||
char *cardname;
|
||||
__u32 config;
|
||||
@@ -515,7 +516,7 @@ static int tc574_resume(struct pcmcia_device *link)
|
||||
|
||||
static void dump_status(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
EL3WINDOW(1);
|
||||
printk(KERN_INFO " irq status %04x, rx status %04x, tx status "
|
||||
"%02x, tx free %04x\n", inw(ioaddr+EL3_STATUS),
|
||||
@@ -544,7 +545,7 @@ static void tc574_wait_for_completion(struct net_device *dev, int cmd)
|
||||
/* Read a word from the EEPROM using the regular EEPROM access register.
|
||||
Assume that we are in register window zero.
|
||||
*/
|
||||
static unsigned short read_eeprom(kio_addr_t ioaddr, int index)
|
||||
static unsigned short read_eeprom(unsigned int ioaddr, int index)
|
||||
{
|
||||
int timer;
|
||||
outw(EEPROM_Read + index, ioaddr + Wn0EepromCmd);
|
||||
@@ -572,9 +573,9 @@ static unsigned short read_eeprom(kio_addr_t ioaddr, int index)
|
||||
|
||||
/* Generate the preamble required for initial synchronization and
|
||||
a few older transceivers. */
|
||||
static void mdio_sync(kio_addr_t ioaddr, int bits)
|
||||
static void mdio_sync(unsigned int ioaddr, int bits)
|
||||
{
|
||||
kio_addr_t mdio_addr = ioaddr + Wn4_PhysicalMgmt;
|
||||
unsigned int mdio_addr = ioaddr + Wn4_PhysicalMgmt;
|
||||
|
||||
/* Establish sync by sending at least 32 logic ones. */
|
||||
while (-- bits >= 0) {
|
||||
@@ -583,12 +584,12 @@ static void mdio_sync(kio_addr_t ioaddr, int bits)
|
||||
}
|
||||
}
|
||||
|
||||
static int mdio_read(kio_addr_t ioaddr, int phy_id, int location)
|
||||
static int mdio_read(unsigned int ioaddr, int phy_id, int location)
|
||||
{
|
||||
int i;
|
||||
int read_cmd = (0xf6 << 10) | (phy_id << 5) | location;
|
||||
unsigned int retval = 0;
|
||||
kio_addr_t mdio_addr = ioaddr + Wn4_PhysicalMgmt;
|
||||
unsigned int mdio_addr = ioaddr + Wn4_PhysicalMgmt;
|
||||
|
||||
if (mii_preamble_required)
|
||||
mdio_sync(ioaddr, 32);
|
||||
@@ -608,10 +609,10 @@ static int mdio_read(kio_addr_t ioaddr, int phy_id, int location)
|
||||
return (retval>>1) & 0xffff;
|
||||
}
|
||||
|
||||
static void mdio_write(kio_addr_t ioaddr, int phy_id, int location, int value)
|
||||
static void mdio_write(unsigned int ioaddr, int phy_id, int location, int value)
|
||||
{
|
||||
int write_cmd = 0x50020000 | (phy_id << 23) | (location << 18) | value;
|
||||
kio_addr_t mdio_addr = ioaddr + Wn4_PhysicalMgmt;
|
||||
unsigned int mdio_addr = ioaddr + Wn4_PhysicalMgmt;
|
||||
int i;
|
||||
|
||||
if (mii_preamble_required)
|
||||
@@ -637,7 +638,7 @@ static void tc574_reset(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
int i;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
unsigned long flags;
|
||||
|
||||
tc574_wait_for_completion(dev, TotalReset|0x10);
|
||||
@@ -741,7 +742,7 @@ static int el3_open(struct net_device *dev)
|
||||
static void el3_tx_timeout(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
printk(KERN_NOTICE "%s: Transmit timed out!\n", dev->name);
|
||||
dump_status(dev);
|
||||
@@ -756,7 +757,7 @@ static void el3_tx_timeout(struct net_device *dev)
|
||||
static void pop_tx_status(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i;
|
||||
|
||||
/* Clear the Tx status stack. */
|
||||
@@ -779,7 +780,7 @@ static void pop_tx_status(struct net_device *dev)
|
||||
|
||||
static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
unsigned long flags;
|
||||
|
||||
@@ -813,7 +814,7 @@ static irqreturn_t el3_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *) dev_id;
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
unsigned status;
|
||||
int work_budget = max_interrupt_work;
|
||||
int handled = 0;
|
||||
@@ -907,7 +908,7 @@ static void media_check(unsigned long arg)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *) arg;
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
unsigned long flags;
|
||||
unsigned short /* cable, */ media, partner;
|
||||
|
||||
@@ -996,7 +997,7 @@ static struct net_device_stats *el3_get_stats(struct net_device *dev)
|
||||
static void update_stats(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u8 rx, tx, up;
|
||||
|
||||
DEBUG(2, "%s: updating the statistics.\n", dev->name);
|
||||
@@ -1033,7 +1034,7 @@ static void update_stats(struct net_device *dev)
|
||||
static int el3_rx(struct net_device *dev, int worklimit)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
short rx_status;
|
||||
|
||||
DEBUG(3, "%s: in rx_packet(), status %4.4x, rx_status %4.4x.\n",
|
||||
@@ -1094,7 +1095,7 @@ static const struct ethtool_ops netdev_ethtool_ops = {
|
||||
static int el3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 *data = (u16 *)&rq->ifr_ifru;
|
||||
int phy = lp->phys & 0x1f;
|
||||
|
||||
@@ -1148,7 +1149,7 @@ static int el3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
|
||||
static void set_rx_mode(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
if (dev->flags & IFF_PROMISC)
|
||||
outw(SetRxFilter | RxStation | RxMulticast | RxBroadcast | RxProm,
|
||||
@@ -1161,7 +1162,7 @@ static void set_rx_mode(struct net_device *dev)
|
||||
|
||||
static int el3_close(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
struct pcmcia_device *link = lp->p_dev;
|
||||
|
||||
|
||||
@@ -145,7 +145,7 @@ DRV_NAME ".c " DRV_VERSION " 2001/10/13 00:08:50 (David Hinds)";
|
||||
static int tc589_config(struct pcmcia_device *link);
|
||||
static void tc589_release(struct pcmcia_device *link);
|
||||
|
||||
static u16 read_eeprom(kio_addr_t ioaddr, int index);
|
||||
static u16 read_eeprom(unsigned int ioaddr, int index);
|
||||
static void tc589_reset(struct net_device *dev);
|
||||
static void media_check(unsigned long arg);
|
||||
static int el3_config(struct net_device *dev, struct ifmap *map);
|
||||
@@ -254,7 +254,7 @@ static int tc589_config(struct pcmcia_device *link)
|
||||
__le16 buf[32];
|
||||
__be16 *phys_addr;
|
||||
int last_fn, last_ret, i, j, multi = 0, fifo;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
char *ram_split[] = {"5:3", "3:1", "1:1", "3:5"};
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
@@ -403,7 +403,7 @@ static void tc589_wait_for_completion(struct net_device *dev, int cmd)
|
||||
Read a word from the EEPROM using the regular EEPROM access register.
|
||||
Assume that we are in register window zero.
|
||||
*/
|
||||
static u16 read_eeprom(kio_addr_t ioaddr, int index)
|
||||
static u16 read_eeprom(unsigned int ioaddr, int index)
|
||||
{
|
||||
int i;
|
||||
outw(EEPROM_READ + index, ioaddr + 10);
|
||||
@@ -421,7 +421,7 @@ static u16 read_eeprom(kio_addr_t ioaddr, int index)
|
||||
static void tc589_set_xcvr(struct net_device *dev, int if_port)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
EL3WINDOW(0);
|
||||
switch (if_port) {
|
||||
@@ -443,7 +443,7 @@ static void tc589_set_xcvr(struct net_device *dev, int if_port)
|
||||
|
||||
static void dump_status(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
EL3WINDOW(1);
|
||||
printk(KERN_INFO " irq status %04x, rx status %04x, tx status "
|
||||
"%02x tx free %04x\n", inw(ioaddr+EL3_STATUS),
|
||||
@@ -459,7 +459,7 @@ static void dump_status(struct net_device *dev)
|
||||
/* Reset and restore all of the 3c589 registers. */
|
||||
static void tc589_reset(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i;
|
||||
|
||||
EL3WINDOW(0);
|
||||
@@ -567,7 +567,7 @@ static int el3_open(struct net_device *dev)
|
||||
static void el3_tx_timeout(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
printk(KERN_WARNING "%s: Transmit timed out!\n", dev->name);
|
||||
dump_status(dev);
|
||||
@@ -582,7 +582,7 @@ static void el3_tx_timeout(struct net_device *dev)
|
||||
static void pop_tx_status(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i;
|
||||
|
||||
/* Clear the Tx status stack. */
|
||||
@@ -604,7 +604,7 @@ static void pop_tx_status(struct net_device *dev)
|
||||
|
||||
static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
struct el3_private *priv = netdev_priv(dev);
|
||||
unsigned long flags;
|
||||
|
||||
@@ -641,7 +641,7 @@ static irqreturn_t el3_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *) dev_id;
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
__u16 status;
|
||||
int i = 0, handled = 1;
|
||||
|
||||
@@ -727,7 +727,7 @@ static void media_check(unsigned long arg)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)(arg);
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 media, errs;
|
||||
unsigned long flags;
|
||||
|
||||
@@ -828,7 +828,7 @@ static struct net_device_stats *el3_get_stats(struct net_device *dev)
|
||||
static void update_stats(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
DEBUG(2, "%s: updating the statistics.\n", dev->name);
|
||||
/* Turn off statistics updates while reading. */
|
||||
@@ -855,7 +855,7 @@ static void update_stats(struct net_device *dev)
|
||||
static int el3_rx(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int worklimit = 32;
|
||||
short rx_status;
|
||||
|
||||
@@ -909,7 +909,7 @@ static void set_multicast_list(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
struct pcmcia_device *link = lp->p_dev;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 opts = SetRxFilter | RxStation | RxBroadcast;
|
||||
|
||||
if (!pcmcia_dev_present(link)) return;
|
||||
@@ -924,7 +924,7 @@ static int el3_close(struct net_device *dev)
|
||||
{
|
||||
struct el3_private *lp = netdev_priv(dev);
|
||||
struct pcmcia_device *link = lp->p_dev;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
DEBUG(1, "%s: shutting down ethercard.\n", dev->name);
|
||||
|
||||
|
||||
@@ -96,8 +96,8 @@ static irqreturn_t ei_irq_wrapper(int irq, void *dev_id);
|
||||
static void ei_watchdog(u_long arg);
|
||||
static void axnet_reset_8390(struct net_device *dev);
|
||||
|
||||
static int mdio_read(kio_addr_t addr, int phy_id, int loc);
|
||||
static void mdio_write(kio_addr_t addr, int phy_id, int loc, int value);
|
||||
static int mdio_read(unsigned int addr, int phy_id, int loc);
|
||||
static void mdio_write(unsigned int addr, int phy_id, int loc, int value);
|
||||
|
||||
static void get_8390_hdr(struct net_device *,
|
||||
struct e8390_pkt_hdr *, int);
|
||||
@@ -203,7 +203,7 @@ static void axnet_detach(struct pcmcia_device *link)
|
||||
static int get_prom(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i, j;
|
||||
|
||||
/* This is based on drivers/net/ne.c */
|
||||
@@ -473,7 +473,7 @@ static int axnet_resume(struct pcmcia_device *link)
|
||||
#define MDIO_MASK 0x0f
|
||||
#define MDIO_ENB_IN 0x02
|
||||
|
||||
static void mdio_sync(kio_addr_t addr)
|
||||
static void mdio_sync(unsigned int addr)
|
||||
{
|
||||
int bits;
|
||||
for (bits = 0; bits < 32; bits++) {
|
||||
@@ -482,7 +482,7 @@ static void mdio_sync(kio_addr_t addr)
|
||||
}
|
||||
}
|
||||
|
||||
static int mdio_read(kio_addr_t addr, int phy_id, int loc)
|
||||
static int mdio_read(unsigned int addr, int phy_id, int loc)
|
||||
{
|
||||
u_int cmd = (0xf6<<10)|(phy_id<<5)|loc;
|
||||
int i, retval = 0;
|
||||
@@ -501,7 +501,7 @@ static int mdio_read(kio_addr_t addr, int phy_id, int loc)
|
||||
return (retval>>1) & 0xffff;
|
||||
}
|
||||
|
||||
static void mdio_write(kio_addr_t addr, int phy_id, int loc, int value)
|
||||
static void mdio_write(unsigned int addr, int phy_id, int loc, int value)
|
||||
{
|
||||
u_int cmd = (0x05<<28)|(phy_id<<23)|(loc<<18)|(1<<17)|value;
|
||||
int i;
|
||||
@@ -575,7 +575,7 @@ static int axnet_close(struct net_device *dev)
|
||||
|
||||
static void axnet_reset_8390(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
int i;
|
||||
|
||||
ei_status.txing = ei_status.dmaing = 0;
|
||||
@@ -610,8 +610,8 @@ static void ei_watchdog(u_long arg)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)(arg);
|
||||
axnet_dev_t *info = PRIV(dev);
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
kio_addr_t mii_addr = nic_base + AXNET_MII_EEP;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
unsigned int mii_addr = nic_base + AXNET_MII_EEP;
|
||||
u_short link;
|
||||
|
||||
if (!netif_device_present(dev)) goto reschedule;
|
||||
@@ -681,7 +681,7 @@ static int axnet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
{
|
||||
axnet_dev_t *info = PRIV(dev);
|
||||
u16 *data = (u16 *)&rq->ifr_ifru;
|
||||
kio_addr_t mii_addr = dev->base_addr + AXNET_MII_EEP;
|
||||
unsigned int mii_addr = dev->base_addr + AXNET_MII_EEP;
|
||||
switch (cmd) {
|
||||
case SIOCGMIIPHY:
|
||||
data[0] = info->phy_id;
|
||||
@@ -703,7 +703,7 @@ static void get_8390_hdr(struct net_device *dev,
|
||||
struct e8390_pkt_hdr *hdr,
|
||||
int ring_page)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
|
||||
outb_p(0, nic_base + EN0_RSARLO); /* On page boundary */
|
||||
outb_p(ring_page, nic_base + EN0_RSARHI);
|
||||
@@ -721,7 +721,7 @@ static void get_8390_hdr(struct net_device *dev,
|
||||
static void block_input(struct net_device *dev, int count,
|
||||
struct sk_buff *skb, int ring_offset)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
int xfer_count = count;
|
||||
char *buf = skb->data;
|
||||
|
||||
@@ -744,7 +744,7 @@ static void block_input(struct net_device *dev, int count,
|
||||
static void block_output(struct net_device *dev, int count,
|
||||
const u_char *buf, const int start_page)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
|
||||
#ifdef PCMCIA_DEBUG
|
||||
if (ei_debug > 4)
|
||||
|
||||
@@ -298,7 +298,8 @@ do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
|
||||
static int mfc_try_io_port(struct pcmcia_device *link)
|
||||
{
|
||||
int i, ret;
|
||||
static const kio_addr_t serial_base[5] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 };
|
||||
static const unsigned int serial_base[5] =
|
||||
{ 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0x0 };
|
||||
|
||||
for (i = 0; i < 5; i++) {
|
||||
link->io.BasePort2 = serial_base[i];
|
||||
@@ -316,7 +317,7 @@ static int mfc_try_io_port(struct pcmcia_device *link)
|
||||
static int ungermann_try_io_port(struct pcmcia_device *link)
|
||||
{
|
||||
int ret;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
/*
|
||||
Ungermann-Bass Access/CARD accepts 0x300,0x320,0x340,0x360
|
||||
0x380,0x3c0 only for ioport.
|
||||
@@ -342,7 +343,7 @@ static int fmvj18x_config(struct pcmcia_device *link)
|
||||
cisparse_t parse;
|
||||
u_short buf[32];
|
||||
int i, last_fn = 0, last_ret = 0, ret;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
cardtype_t cardtype;
|
||||
char *card_name = "unknown";
|
||||
u_char *node_id;
|
||||
@@ -610,7 +611,7 @@ static int fmvj18x_setup_mfc(struct pcmcia_device *link)
|
||||
u_char __iomem *base;
|
||||
int i, j;
|
||||
struct net_device *dev = link->priv;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
|
||||
/* Allocate a small memory window */
|
||||
req.Attributes = WIN_DATA_WIDTH_8|WIN_MEMORY_TYPE_AM|WIN_ENABLE;
|
||||
@@ -735,7 +736,7 @@ static irqreturn_t fjn_interrupt(int dummy, void *dev_id)
|
||||
{
|
||||
struct net_device *dev = dev_id;
|
||||
local_info_t *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
unsigned short tx_stat, rx_stat;
|
||||
|
||||
ioaddr = dev->base_addr;
|
||||
@@ -789,7 +790,7 @@ static irqreturn_t fjn_interrupt(int dummy, void *dev_id)
|
||||
static void fjn_tx_timeout(struct net_device *dev)
|
||||
{
|
||||
struct local_info_t *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
printk(KERN_NOTICE "%s: transmit timed out with status %04x, %s?\n",
|
||||
dev->name, htons(inw(ioaddr + TX_STATUS)),
|
||||
@@ -819,7 +820,7 @@ static void fjn_tx_timeout(struct net_device *dev)
|
||||
static int fjn_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct local_info_t *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
short length = skb->len;
|
||||
|
||||
if (length < ETH_ZLEN)
|
||||
@@ -892,7 +893,7 @@ static int fjn_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
static void fjn_reset(struct net_device *dev)
|
||||
{
|
||||
struct local_info_t *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i;
|
||||
|
||||
DEBUG(4, "fjn_reset(%s) called.\n",dev->name);
|
||||
@@ -971,7 +972,7 @@ static void fjn_reset(struct net_device *dev)
|
||||
static void fjn_rx(struct net_device *dev)
|
||||
{
|
||||
struct local_info_t *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int boguscount = 10; /* 5 -> 10: by agy 19940922 */
|
||||
|
||||
DEBUG(4, "%s: in rx_packet(), rx_status %02x.\n",
|
||||
@@ -1125,7 +1126,7 @@ static int fjn_close(struct net_device *dev)
|
||||
{
|
||||
struct local_info_t *lp = netdev_priv(dev);
|
||||
struct pcmcia_device *link = lp->p_dev;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
DEBUG(4, "fjn_close('%s').\n", dev->name);
|
||||
|
||||
@@ -1168,7 +1169,7 @@ static struct net_device_stats *fjn_get_stats(struct net_device *dev)
|
||||
|
||||
static void set_rx_mode(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_char mc_filter[8]; /* Multicast hash filter */
|
||||
u_long flags;
|
||||
int i;
|
||||
|
||||
@@ -518,7 +518,7 @@ mace_read
|
||||
assuming that during normal operation, the MACE is always in
|
||||
bank 0.
|
||||
---------------------------------------------------------------------------- */
|
||||
static int mace_read(mace_private *lp, kio_addr_t ioaddr, int reg)
|
||||
static int mace_read(mace_private *lp, unsigned int ioaddr, int reg)
|
||||
{
|
||||
int data = 0xFF;
|
||||
unsigned long flags;
|
||||
@@ -545,7 +545,8 @@ mace_write
|
||||
are assuming that during normal operation, the MACE is always in
|
||||
bank 0.
|
||||
---------------------------------------------------------------------------- */
|
||||
static void mace_write(mace_private *lp, kio_addr_t ioaddr, int reg, int data)
|
||||
static void mace_write(mace_private *lp, unsigned int ioaddr, int reg,
|
||||
int data)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
@@ -567,7 +568,7 @@ static void mace_write(mace_private *lp, kio_addr_t ioaddr, int reg, int data)
|
||||
mace_init
|
||||
Resets the MACE chip.
|
||||
---------------------------------------------------------------------------- */
|
||||
static int mace_init(mace_private *lp, kio_addr_t ioaddr, char *enet_addr)
|
||||
static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
|
||||
{
|
||||
int i;
|
||||
int ct = 0;
|
||||
@@ -657,7 +658,7 @@ static int nmclan_config(struct pcmcia_device *link)
|
||||
tuple_t tuple;
|
||||
u_char buf[64];
|
||||
int i, last_ret, last_fn;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
DEBUG(0, "nmclan_config(0x%p)\n", link);
|
||||
@@ -839,7 +840,7 @@ mace_open
|
||||
---------------------------------------------------------------------------- */
|
||||
static int mace_open(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
struct pcmcia_device *link = lp->p_dev;
|
||||
|
||||
@@ -862,7 +863,7 @@ mace_close
|
||||
---------------------------------------------------------------------------- */
|
||||
static int mace_close(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
struct pcmcia_device *link = lp->p_dev;
|
||||
|
||||
@@ -935,7 +936,7 @@ static void mace_tx_timeout(struct net_device *dev)
|
||||
static int mace_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
netif_stop_queue(dev);
|
||||
|
||||
@@ -996,7 +997,7 @@ static irqreturn_t mace_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *) dev_id;
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
int status;
|
||||
int IntrCnt = MACE_MAX_IR_ITERATIONS;
|
||||
|
||||
@@ -1140,7 +1141,7 @@ mace_rx
|
||||
static int mace_rx(struct net_device *dev, unsigned char RxCnt)
|
||||
{
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
unsigned char rx_framecnt;
|
||||
unsigned short rx_status;
|
||||
|
||||
@@ -1302,7 +1303,7 @@ update_stats
|
||||
card's SRAM fast enough. If this happens, something is
|
||||
seriously wrong with the hardware.
|
||||
---------------------------------------------------------------------------- */
|
||||
static void update_stats(kio_addr_t ioaddr, struct net_device *dev)
|
||||
static void update_stats(unsigned int ioaddr, struct net_device *dev)
|
||||
{
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
|
||||
@@ -1448,7 +1449,7 @@ static void restore_multicast_list(struct net_device *dev)
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
int num_addrs = lp->multicast_num_addrs;
|
||||
int *ladrf = lp->multicast_ladrf;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i;
|
||||
|
||||
DEBUG(2, "%s: restoring Rx mode to %d addresses.\n",
|
||||
@@ -1540,7 +1541,7 @@ static void set_multicast_list(struct net_device *dev)
|
||||
|
||||
static void restore_multicast_list(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
mace_private *lp = netdev_priv(dev);
|
||||
|
||||
DEBUG(2, "%s: restoring Rx mode to %d addresses.\n", dev->name,
|
||||
|
||||
@@ -349,7 +349,7 @@ static hw_info_t *get_hwinfo(struct pcmcia_device *link)
|
||||
static hw_info_t *get_prom(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_char prom[32];
|
||||
int i, j;
|
||||
|
||||
@@ -425,7 +425,7 @@ static hw_info_t *get_dl10019(struct pcmcia_device *link)
|
||||
static hw_info_t *get_ax88190(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i, j;
|
||||
|
||||
/* Not much of a test, but the alternatives are messy */
|
||||
@@ -756,7 +756,7 @@ static int pcnet_resume(struct pcmcia_device *link)
|
||||
#define MDIO_DATA_READ 0x10
|
||||
#define MDIO_MASK 0x0f
|
||||
|
||||
static void mdio_sync(kio_addr_t addr)
|
||||
static void mdio_sync(unsigned int addr)
|
||||
{
|
||||
int bits, mask = inb(addr) & MDIO_MASK;
|
||||
for (bits = 0; bits < 32; bits++) {
|
||||
@@ -765,7 +765,7 @@ static void mdio_sync(kio_addr_t addr)
|
||||
}
|
||||
}
|
||||
|
||||
static int mdio_read(kio_addr_t addr, int phy_id, int loc)
|
||||
static int mdio_read(unsigned int addr, int phy_id, int loc)
|
||||
{
|
||||
u_int cmd = (0x06<<10)|(phy_id<<5)|loc;
|
||||
int i, retval = 0, mask = inb(addr) & MDIO_MASK;
|
||||
@@ -784,7 +784,7 @@ static int mdio_read(kio_addr_t addr, int phy_id, int loc)
|
||||
return (retval>>1) & 0xffff;
|
||||
}
|
||||
|
||||
static void mdio_write(kio_addr_t addr, int phy_id, int loc, int value)
|
||||
static void mdio_write(unsigned int addr, int phy_id, int loc, int value)
|
||||
{
|
||||
u_int cmd = (0x05<<28)|(phy_id<<23)|(loc<<18)|(1<<17)|value;
|
||||
int i, mask = inb(addr) & MDIO_MASK;
|
||||
@@ -818,10 +818,10 @@ static void mdio_write(kio_addr_t addr, int phy_id, int loc, int value)
|
||||
|
||||
#define DL19FDUPLX 0x0400 /* DL10019 Full duplex mode */
|
||||
|
||||
static int read_eeprom(kio_addr_t ioaddr, int location)
|
||||
static int read_eeprom(unsigned int ioaddr, int location)
|
||||
{
|
||||
int i, retval = 0;
|
||||
kio_addr_t ee_addr = ioaddr + DLINK_EEPROM;
|
||||
unsigned int ee_addr = ioaddr + DLINK_EEPROM;
|
||||
int read_cmd = location | (EE_READ_CMD << 8);
|
||||
|
||||
outb(0, ee_addr);
|
||||
@@ -852,10 +852,10 @@ static int read_eeprom(kio_addr_t ioaddr, int location)
|
||||
In ASIC mode, EE_ADOT is used to output the data to the ASIC.
|
||||
*/
|
||||
|
||||
static void write_asic(kio_addr_t ioaddr, int location, short asic_data)
|
||||
static void write_asic(unsigned int ioaddr, int location, short asic_data)
|
||||
{
|
||||
int i;
|
||||
kio_addr_t ee_addr = ioaddr + DLINK_EEPROM;
|
||||
unsigned int ee_addr = ioaddr + DLINK_EEPROM;
|
||||
short dataval;
|
||||
int read_cmd = location | (EE_READ_CMD << 8);
|
||||
|
||||
@@ -897,7 +897,7 @@ static void write_asic(kio_addr_t ioaddr, int location, short asic_data)
|
||||
|
||||
static void set_misc_reg(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
pcnet_dev_t *info = PRIV(dev);
|
||||
u_char tmp;
|
||||
|
||||
@@ -936,7 +936,7 @@ static void set_misc_reg(struct net_device *dev)
|
||||
static void mii_phy_probe(struct net_device *dev)
|
||||
{
|
||||
pcnet_dev_t *info = PRIV(dev);
|
||||
kio_addr_t mii_addr = dev->base_addr + DLINK_GPIO;
|
||||
unsigned int mii_addr = dev->base_addr + DLINK_GPIO;
|
||||
int i;
|
||||
u_int tmp, phyid;
|
||||
|
||||
@@ -1014,7 +1014,7 @@ static int pcnet_close(struct net_device *dev)
|
||||
|
||||
static void pcnet_reset_8390(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
int i;
|
||||
|
||||
ei_status.txing = ei_status.dmaing = 0;
|
||||
@@ -1074,8 +1074,8 @@ static void ei_watchdog(u_long arg)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)arg;
|
||||
pcnet_dev_t *info = PRIV(dev);
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
kio_addr_t mii_addr = nic_base + DLINK_GPIO;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
unsigned int mii_addr = nic_base + DLINK_GPIO;
|
||||
u_short link;
|
||||
|
||||
if (!netif_device_present(dev)) goto reschedule;
|
||||
@@ -1177,7 +1177,7 @@ static int ei_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
{
|
||||
pcnet_dev_t *info = PRIV(dev);
|
||||
u16 *data = (u16 *)&rq->ifr_ifru;
|
||||
kio_addr_t mii_addr = dev->base_addr + DLINK_GPIO;
|
||||
unsigned int mii_addr = dev->base_addr + DLINK_GPIO;
|
||||
switch (cmd) {
|
||||
case SIOCGMIIPHY:
|
||||
data[0] = info->phy_id;
|
||||
@@ -1199,7 +1199,7 @@ static void dma_get_8390_hdr(struct net_device *dev,
|
||||
struct e8390_pkt_hdr *hdr,
|
||||
int ring_page)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
|
||||
if (ei_status.dmaing) {
|
||||
printk(KERN_NOTICE "%s: DMAing conflict in dma_block_input."
|
||||
@@ -1230,7 +1230,7 @@ static void dma_get_8390_hdr(struct net_device *dev,
|
||||
static void dma_block_input(struct net_device *dev, int count,
|
||||
struct sk_buff *skb, int ring_offset)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
int xfer_count = count;
|
||||
char *buf = skb->data;
|
||||
|
||||
@@ -1285,7 +1285,7 @@ static void dma_block_input(struct net_device *dev, int count,
|
||||
static void dma_block_output(struct net_device *dev, int count,
|
||||
const u_char *buf, const int start_page)
|
||||
{
|
||||
kio_addr_t nic_base = dev->base_addr;
|
||||
unsigned int nic_base = dev->base_addr;
|
||||
pcnet_dev_t *info = PRIV(dev);
|
||||
#ifdef PCMCIA_DEBUG
|
||||
int retries = 0;
|
||||
|
||||
@@ -295,7 +295,7 @@ static int s9k_config(struct net_device *dev, struct ifmap *map);
|
||||
static void smc_set_xcvr(struct net_device *dev, int if_port);
|
||||
static void smc_reset(struct net_device *dev);
|
||||
static void media_check(u_long arg);
|
||||
static void mdio_sync(kio_addr_t addr);
|
||||
static void mdio_sync(unsigned int addr);
|
||||
static int mdio_read(struct net_device *dev, int phy_id, int loc);
|
||||
static void mdio_write(struct net_device *dev, int phy_id, int loc, int value);
|
||||
static int smc_link_ok(struct net_device *dev);
|
||||
@@ -601,8 +601,8 @@ static void mot_config(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
kio_addr_t iouart = link->io.BasePort2;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
unsigned int iouart = link->io.BasePort2;
|
||||
|
||||
/* Set UART base address and force map with COR bit 1 */
|
||||
writeb(iouart & 0xff, smc->base + MOT_UART + CISREG_IOBASE_0);
|
||||
@@ -621,7 +621,7 @@ static void mot_config(struct pcmcia_device *link)
|
||||
static int mot_setup(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int i, wait, loop;
|
||||
u_int addr;
|
||||
|
||||
@@ -754,7 +754,7 @@ free_cfg_mem:
|
||||
static int osi_config(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
static const kio_addr_t com[4] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
|
||||
static const unsigned int com[4] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
|
||||
int i, j;
|
||||
|
||||
link->conf.Attributes |= CONF_ENABLE_SPKR;
|
||||
@@ -900,7 +900,7 @@ static int smc91c92_resume(struct pcmcia_device *link)
|
||||
static int check_sig(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int width;
|
||||
u_short s;
|
||||
|
||||
@@ -960,7 +960,7 @@ static int smc91c92_config(struct pcmcia_device *link)
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
char *name;
|
||||
int i, j, rev;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
u_long mir;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
@@ -1136,7 +1136,7 @@ static void smc91c92_release(struct pcmcia_device *link)
|
||||
#define MDIO_DATA_WRITE1 (MDIO_DIR_WRITE | MDIO_DATA_OUT)
|
||||
#define MDIO_DATA_READ 0x02
|
||||
|
||||
static void mdio_sync(kio_addr_t addr)
|
||||
static void mdio_sync(unsigned int addr)
|
||||
{
|
||||
int bits;
|
||||
for (bits = 0; bits < 32; bits++) {
|
||||
@@ -1147,7 +1147,7 @@ static void mdio_sync(kio_addr_t addr)
|
||||
|
||||
static int mdio_read(struct net_device *dev, int phy_id, int loc)
|
||||
{
|
||||
kio_addr_t addr = dev->base_addr + MGMT;
|
||||
unsigned int addr = dev->base_addr + MGMT;
|
||||
u_int cmd = (0x06<<10)|(phy_id<<5)|loc;
|
||||
int i, retval = 0;
|
||||
|
||||
@@ -1167,7 +1167,7 @@ static int mdio_read(struct net_device *dev, int phy_id, int loc)
|
||||
|
||||
static void mdio_write(struct net_device *dev, int phy_id, int loc, int value)
|
||||
{
|
||||
kio_addr_t addr = dev->base_addr + MGMT;
|
||||
unsigned int addr = dev->base_addr + MGMT;
|
||||
u_int cmd = (0x05<<28)|(phy_id<<23)|(loc<<18)|(1<<17)|value;
|
||||
int i;
|
||||
|
||||
@@ -1193,7 +1193,7 @@ static void mdio_write(struct net_device *dev, int phy_id, int loc, int value)
|
||||
#ifdef PCMCIA_DEBUG
|
||||
static void smc_dump(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_short i, w, save;
|
||||
save = inw(ioaddr + BANK_SELECT);
|
||||
for (w = 0; w < 4; w++) {
|
||||
@@ -1248,7 +1248,7 @@ static int smc_close(struct net_device *dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
struct pcmcia_device *link = smc->p_dev;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
DEBUG(0, "%s: smc_close(), status %4.4x.\n",
|
||||
dev->name, inw(ioaddr + BANK_SELECT));
|
||||
@@ -1285,7 +1285,7 @@ static void smc_hardware_send_packet(struct net_device * dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
struct sk_buff *skb = smc->saved_skb;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_char packet_no;
|
||||
|
||||
if (!skb) {
|
||||
@@ -1349,7 +1349,7 @@ static void smc_hardware_send_packet(struct net_device * dev)
|
||||
static void smc_tx_timeout(struct net_device *dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
printk(KERN_NOTICE "%s: SMC91c92 transmit timed out, "
|
||||
"Tx_status %2.2x status %4.4x.\n",
|
||||
@@ -1364,7 +1364,7 @@ static void smc_tx_timeout(struct net_device *dev)
|
||||
static int smc_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_short num_pages;
|
||||
short time_out, ir;
|
||||
unsigned long flags;
|
||||
@@ -1434,7 +1434,7 @@ static int smc_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
static void smc_tx_err(struct net_device * dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int saved_packet = inw(ioaddr + PNR_ARR) & 0xff;
|
||||
int packet_no = inw(ioaddr + FIFO_PORTS) & 0x7f;
|
||||
int tx_status;
|
||||
@@ -1478,7 +1478,7 @@ static void smc_tx_err(struct net_device * dev)
|
||||
static void smc_eph_irq(struct net_device *dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_short card_stats, ephs;
|
||||
|
||||
SMC_SELECT_BANK(0);
|
||||
@@ -1513,7 +1513,7 @@ static irqreturn_t smc_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct net_device *dev = dev_id;
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
u_short saved_bank, saved_pointer, mask, status;
|
||||
unsigned int handled = 1;
|
||||
char bogus_cnt = INTR_WORK; /* Work we are willing to do. */
|
||||
@@ -1633,7 +1633,7 @@ irq_done:
|
||||
static void smc_rx(struct net_device *dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int rx_status;
|
||||
int packet_length; /* Caution: not frame length, rather words
|
||||
to transfer from the chip. */
|
||||
@@ -1738,7 +1738,7 @@ static void fill_multicast_tbl(int count, struct dev_mc_list *addrs,
|
||||
|
||||
static void set_rx_mode(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
u_int multicast_table[ 2 ] = { 0, };
|
||||
unsigned long flags;
|
||||
@@ -1804,7 +1804,7 @@ static int s9k_config(struct net_device *dev, struct ifmap *map)
|
||||
static void smc_set_xcvr(struct net_device *dev, int if_port)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_short saved_bank;
|
||||
|
||||
saved_bank = inw(ioaddr + BANK_SELECT);
|
||||
@@ -1827,7 +1827,7 @@ static void smc_set_xcvr(struct net_device *dev, int if_port)
|
||||
|
||||
static void smc_reset(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
int i;
|
||||
|
||||
@@ -1904,7 +1904,7 @@ static void media_check(u_long arg)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *) arg;
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u_short i, media, saved_bank;
|
||||
u_short link;
|
||||
unsigned long flags;
|
||||
@@ -2021,7 +2021,7 @@ reschedule:
|
||||
|
||||
static int smc_link_ok(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
|
||||
if (smc->cfg & CFG_MII_SELECT) {
|
||||
@@ -2035,7 +2035,7 @@ static int smc_link_ok(struct net_device *dev)
|
||||
static int smc_netdev_get_ecmd(struct net_device *dev, struct ethtool_cmd *ecmd)
|
||||
{
|
||||
u16 tmp;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
ecmd->supported = (SUPPORTED_TP | SUPPORTED_AUI |
|
||||
SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full);
|
||||
@@ -2057,7 +2057,7 @@ static int smc_netdev_get_ecmd(struct net_device *dev, struct ethtool_cmd *ecmd)
|
||||
static int smc_netdev_set_ecmd(struct net_device *dev, struct ethtool_cmd *ecmd)
|
||||
{
|
||||
u16 tmp;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
if (ecmd->speed != SPEED_10)
|
||||
return -EINVAL;
|
||||
@@ -2100,7 +2100,7 @@ static void smc_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info
|
||||
static int smc_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 saved_bank = inw(ioaddr + BANK_SELECT);
|
||||
int ret;
|
||||
|
||||
@@ -2118,7 +2118,7 @@ static int smc_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
|
||||
static int smc_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 saved_bank = inw(ioaddr + BANK_SELECT);
|
||||
int ret;
|
||||
|
||||
@@ -2136,7 +2136,7 @@ static int smc_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
|
||||
static u32 smc_get_link(struct net_device *dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 saved_bank = inw(ioaddr + BANK_SELECT);
|
||||
u32 ret;
|
||||
|
||||
@@ -2164,7 +2164,7 @@ static int smc_nway_reset(struct net_device *dev)
|
||||
{
|
||||
struct smc_private *smc = netdev_priv(dev);
|
||||
if (smc->cfg & CFG_MII_SELECT) {
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 saved_bank = inw(ioaddr + BANK_SELECT);
|
||||
int res;
|
||||
|
||||
@@ -2196,7 +2196,7 @@ static int smc_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
struct mii_ioctl_data *mii = if_mii(rq);
|
||||
int rc = 0;
|
||||
u16 saved_bank;
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
if (!netif_running(dev))
|
||||
return -EINVAL;
|
||||
|
||||
@@ -273,12 +273,12 @@ INT_MODULE_PARM(lockup_hack, 0); /* anti lockup hack */
|
||||
static unsigned maxrx_bytes = 22000;
|
||||
|
||||
/* MII management prototypes */
|
||||
static void mii_idle(kio_addr_t ioaddr);
|
||||
static void mii_putbit(kio_addr_t ioaddr, unsigned data);
|
||||
static int mii_getbit(kio_addr_t ioaddr);
|
||||
static void mii_wbits(kio_addr_t ioaddr, unsigned data, int len);
|
||||
static unsigned mii_rd(kio_addr_t ioaddr, u_char phyaddr, u_char phyreg);
|
||||
static void mii_wr(kio_addr_t ioaddr, u_char phyaddr, u_char phyreg,
|
||||
static void mii_idle(unsigned int ioaddr);
|
||||
static void mii_putbit(unsigned int ioaddr, unsigned data);
|
||||
static int mii_getbit(unsigned int ioaddr);
|
||||
static void mii_wbits(unsigned int ioaddr, unsigned data, int len);
|
||||
static unsigned mii_rd(unsigned int ioaddr, u_char phyaddr, u_char phyreg);
|
||||
static void mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg,
|
||||
unsigned data, int len);
|
||||
|
||||
/*
|
||||
@@ -403,7 +403,7 @@ next_tuple(struct pcmcia_device *handle, tuple_t *tuple, cisparse_t *parse)
|
||||
static void
|
||||
PrintRegisters(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
if (pc_debug > 1) {
|
||||
int i, page;
|
||||
@@ -439,7 +439,7 @@ PrintRegisters(struct net_device *dev)
|
||||
* Turn around for read
|
||||
*/
|
||||
static void
|
||||
mii_idle(kio_addr_t ioaddr)
|
||||
mii_idle(unsigned int ioaddr)
|
||||
{
|
||||
PutByte(XIRCREG2_GPR2, 0x04|0); /* drive MDCK low */
|
||||
udelay(1);
|
||||
@@ -451,7 +451,7 @@ mii_idle(kio_addr_t ioaddr)
|
||||
* Write a bit to MDI/O
|
||||
*/
|
||||
static void
|
||||
mii_putbit(kio_addr_t ioaddr, unsigned data)
|
||||
mii_putbit(unsigned int ioaddr, unsigned data)
|
||||
{
|
||||
#if 1
|
||||
if (data) {
|
||||
@@ -484,7 +484,7 @@ mii_putbit(kio_addr_t ioaddr, unsigned data)
|
||||
* Get a bit from MDI/O
|
||||
*/
|
||||
static int
|
||||
mii_getbit(kio_addr_t ioaddr)
|
||||
mii_getbit(unsigned int ioaddr)
|
||||
{
|
||||
unsigned d;
|
||||
|
||||
@@ -497,7 +497,7 @@ mii_getbit(kio_addr_t ioaddr)
|
||||
}
|
||||
|
||||
static void
|
||||
mii_wbits(kio_addr_t ioaddr, unsigned data, int len)
|
||||
mii_wbits(unsigned int ioaddr, unsigned data, int len)
|
||||
{
|
||||
unsigned m = 1 << (len-1);
|
||||
for (; m; m >>= 1)
|
||||
@@ -505,7 +505,7 @@ mii_wbits(kio_addr_t ioaddr, unsigned data, int len)
|
||||
}
|
||||
|
||||
static unsigned
|
||||
mii_rd(kio_addr_t ioaddr, u_char phyaddr, u_char phyreg)
|
||||
mii_rd(unsigned int ioaddr, u_char phyaddr, u_char phyreg)
|
||||
{
|
||||
int i;
|
||||
unsigned data=0, m;
|
||||
@@ -527,7 +527,8 @@ mii_rd(kio_addr_t ioaddr, u_char phyaddr, u_char phyreg)
|
||||
}
|
||||
|
||||
static void
|
||||
mii_wr(kio_addr_t ioaddr, u_char phyaddr, u_char phyreg, unsigned data, int len)
|
||||
mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg, unsigned data,
|
||||
int len)
|
||||
{
|
||||
int i;
|
||||
|
||||
@@ -726,7 +727,7 @@ xirc2ps_config(struct pcmcia_device * link)
|
||||
local_info_t *local = netdev_priv(dev);
|
||||
tuple_t tuple;
|
||||
cisparse_t parse;
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
int err, i;
|
||||
u_char buf[64];
|
||||
cistpl_lan_node_id_t *node_id = (cistpl_lan_node_id_t*)parse.funce.data;
|
||||
@@ -1104,7 +1105,7 @@ xirc2ps_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)dev_id;
|
||||
local_info_t *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr;
|
||||
unsigned int ioaddr;
|
||||
u_char saved_page;
|
||||
unsigned bytes_rcvd;
|
||||
unsigned int_status, eth_status, rx_status, tx_status;
|
||||
@@ -1209,7 +1210,7 @@ xirc2ps_interrupt(int irq, void *dev_id)
|
||||
unsigned i;
|
||||
u_long *p = skb_put(skb, pktlen);
|
||||
register u_long a;
|
||||
kio_addr_t edpreg = ioaddr+XIRCREG_EDP-2;
|
||||
unsigned int edpreg = ioaddr+XIRCREG_EDP-2;
|
||||
for (i=0; i < len ; i += 4, p++) {
|
||||
a = inl(edpreg);
|
||||
__asm__("rorl $16,%0\n\t"
|
||||
@@ -1346,7 +1347,7 @@ static int
|
||||
do_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
local_info_t *lp = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
int okay;
|
||||
unsigned freespace;
|
||||
unsigned pktlen = skb->len;
|
||||
@@ -1415,7 +1416,7 @@ do_get_stats(struct net_device *dev)
|
||||
static void
|
||||
set_addresses(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
local_info_t *lp = netdev_priv(dev);
|
||||
struct dev_mc_list *dmi = dev->mc_list;
|
||||
unsigned char *addr;
|
||||
@@ -1459,7 +1460,7 @@ set_addresses(struct net_device *dev)
|
||||
static void
|
||||
set_multicast_list(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
SelectPage(0x42);
|
||||
if (dev->flags & IFF_PROMISC) { /* snoop */
|
||||
@@ -1543,7 +1544,7 @@ static int
|
||||
do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
{
|
||||
local_info_t *local = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
u16 *data = (u16 *)&rq->ifr_ifru;
|
||||
|
||||
DEBUG(1, "%s: ioctl(%-.6s, %#04x) %04x %04x %04x %04x\n",
|
||||
@@ -1575,7 +1576,7 @@ static void
|
||||
hardreset(struct net_device *dev)
|
||||
{
|
||||
local_info_t *local = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
SelectPage(4);
|
||||
udelay(1);
|
||||
@@ -1592,7 +1593,7 @@ static void
|
||||
do_reset(struct net_device *dev, int full)
|
||||
{
|
||||
local_info_t *local = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
unsigned value;
|
||||
|
||||
DEBUG(0, "%s: do_reset(%p,%d)\n", dev? dev->name:"eth?", dev, full);
|
||||
@@ -1753,7 +1754,7 @@ static int
|
||||
init_mii(struct net_device *dev)
|
||||
{
|
||||
local_info_t *local = netdev_priv(dev);
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
unsigned control, status, linkpartner;
|
||||
int i;
|
||||
|
||||
@@ -1826,7 +1827,7 @@ static void
|
||||
do_powerdown(struct net_device *dev)
|
||||
{
|
||||
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
|
||||
DEBUG(0, "do_powerdown(%p)\n", dev);
|
||||
|
||||
@@ -1838,7 +1839,7 @@ do_powerdown(struct net_device *dev)
|
||||
static int
|
||||
do_stop(struct net_device *dev)
|
||||
{
|
||||
kio_addr_t ioaddr = dev->base_addr;
|
||||
unsigned int ioaddr = dev->base_addr;
|
||||
local_info_t *lp = netdev_priv(dev);
|
||||
struct pcmcia_device *link = lp->p_dev;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user