Commit 636b8116 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

drivers/net/pcmcia: Use pr_<level> and netdev_<level>

On Mon, 2010-08-09 at 17:34 +0200, Dominik Brodowski wrote:
> look good from a PCMCIA point of view, therefore:
> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>

If PCMCIA is still being looked after, then here's
another for you, maybe for 2.6.37.

Use the more descriptive logging message styles.

There are whitespace/indentation errors in the original
sources that these changes do not modify, so checkpatch
errors were cheerfully ignored.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 00093fab
...@@ -69,6 +69,8 @@ earlier 3Com products. ...@@ -69,6 +69,8 @@ earlier 3Com products.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/init.h> #include <linux/init.h>
...@@ -373,8 +375,8 @@ static int tc574_config(struct pcmcia_device *link) ...@@ -373,8 +375,8 @@ static int tc574_config(struct pcmcia_device *link)
for (i = 0; i < 3; i++) for (i = 0; i < 3; i++)
phys_addr[i] = htons(read_eeprom(ioaddr, i + 10)); phys_addr[i] = htons(read_eeprom(ioaddr, i + 10));
if (phys_addr[0] == htons(0x6060)) { if (phys_addr[0] == htons(0x6060)) {
printk(KERN_NOTICE "3c574_cs: IO port conflict at 0x%03lx" pr_notice("IO port conflict at 0x%03lx-0x%03lx\n",
"-0x%03lx\n", dev->base_addr, dev->base_addr+15); dev->base_addr, dev->base_addr+15);
goto failed; goto failed;
} }
} }
...@@ -388,7 +390,7 @@ static int tc574_config(struct pcmcia_device *link) ...@@ -388,7 +390,7 @@ static int tc574_config(struct pcmcia_device *link)
outw(2<<11, ioaddr + RunnerRdCtrl); outw(2<<11, ioaddr + RunnerRdCtrl);
mcr = inb(ioaddr + 2); mcr = inb(ioaddr + 2);
outw(0<<11, ioaddr + RunnerRdCtrl); outw(0<<11, ioaddr + RunnerRdCtrl);
printk(KERN_INFO " ASIC rev %d,", mcr>>3); pr_info(" ASIC rev %d,", mcr>>3);
EL3WINDOW(3); EL3WINDOW(3);
config = inl(ioaddr + Wn3_Config); config = inl(ioaddr + Wn3_Config);
lp->default_media = (config & Xcvr) >> Xcvr_shift; lp->default_media = (config & Xcvr) >> Xcvr_shift;
...@@ -425,7 +427,7 @@ static int tc574_config(struct pcmcia_device *link) ...@@ -425,7 +427,7 @@ static int tc574_config(struct pcmcia_device *link)
} }
} }
if (phy > 32) { if (phy > 32) {
printk(KERN_NOTICE " No MII transceivers found!\n"); pr_notice(" No MII transceivers found!\n");
goto failed; goto failed;
} }
i = mdio_read(ioaddr, lp->phys, 16) | 0x40; i = mdio_read(ioaddr, lp->phys, 16) | 0x40;
...@@ -441,18 +443,16 @@ static int tc574_config(struct pcmcia_device *link) ...@@ -441,18 +443,16 @@ static int tc574_config(struct pcmcia_device *link)
SET_NETDEV_DEV(dev, &link->dev); SET_NETDEV_DEV(dev, &link->dev);
if (register_netdev(dev) != 0) { if (register_netdev(dev) != 0) {
printk(KERN_NOTICE "3c574_cs: register_netdev() failed\n"); pr_notice("register_netdev() failed\n");
goto failed; goto failed;
} }
printk(KERN_INFO "%s: %s at io %#3lx, irq %d, " netdev_info(dev, "%s at io %#3lx, irq %d, hw_addr %pM\n",
"hw_addr %pM.\n", cardname, dev->base_addr, dev->irq, dev->dev_addr);
dev->name, cardname, dev->base_addr, dev->irq, netdev_info(dev, " %dK FIFO split %s Rx:Tx, %sMII interface.\n",
dev->dev_addr); 8 << config & Ram_size,
printk(" %dK FIFO split %s Rx:Tx, %sMII interface.\n", ram_split[(config & Ram_split) >> Ram_split_shift],
8 << config & Ram_size, config & Autoselect ? "autoselect " : "");
ram_split[(config & Ram_split) >> Ram_split_shift],
config & Autoselect ? "autoselect " : "");
return 0; return 0;
...@@ -499,14 +499,14 @@ static void dump_status(struct net_device *dev) ...@@ -499,14 +499,14 @@ static void dump_status(struct net_device *dev)
{ {
unsigned int ioaddr = dev->base_addr; unsigned int ioaddr = dev->base_addr;
EL3WINDOW(1); EL3WINDOW(1);
printk(KERN_INFO " irq status %04x, rx status %04x, tx status " netdev_info(dev, " irq status %04x, rx status %04x, tx status %02x, tx free %04x\n",
"%02x, tx free %04x\n", inw(ioaddr+EL3_STATUS), inw(ioaddr+EL3_STATUS),
inw(ioaddr+RxStatus), inb(ioaddr+TxStatus), inw(ioaddr+RxStatus), inb(ioaddr+TxStatus),
inw(ioaddr+TxFree)); inw(ioaddr+TxFree));
EL3WINDOW(4); EL3WINDOW(4);
printk(KERN_INFO " diagnostics: fifo %04x net %04x ethernet %04x" netdev_info(dev, " diagnostics: fifo %04x net %04x ethernet %04x media %04x\n",
" media %04x\n", inw(ioaddr+0x04), inw(ioaddr+0x06), inw(ioaddr+0x04), inw(ioaddr+0x06),
inw(ioaddr+0x08), inw(ioaddr+0x0a)); inw(ioaddr+0x08), inw(ioaddr+0x0a));
EL3WINDOW(1); EL3WINDOW(1);
} }
...@@ -520,7 +520,7 @@ static void tc574_wait_for_completion(struct net_device *dev, int cmd) ...@@ -520,7 +520,7 @@ static void tc574_wait_for_completion(struct net_device *dev, int cmd)
while (--i > 0) while (--i > 0)
if (!(inw(dev->base_addr + EL3_STATUS) & 0x1000)) break; if (!(inw(dev->base_addr + EL3_STATUS) & 0x1000)) break;
if (i == 0) if (i == 0)
printk(KERN_NOTICE "%s: command 0x%04x did not complete!\n", dev->name, cmd); netdev_notice(dev, "command 0x%04x did not complete!\n", cmd);
} }
/* Read a word from the EEPROM using the regular EEPROM access register. /* Read a word from the EEPROM using the regular EEPROM access register.
...@@ -722,7 +722,7 @@ static void el3_tx_timeout(struct net_device *dev) ...@@ -722,7 +722,7 @@ static void el3_tx_timeout(struct net_device *dev)
{ {
unsigned int ioaddr = dev->base_addr; unsigned int ioaddr = dev->base_addr;
printk(KERN_NOTICE "%s: Transmit timed out!\n", dev->name); netdev_notice(dev, "Transmit timed out!\n");
dump_status(dev); dump_status(dev);
dev->stats.tx_errors++; dev->stats.tx_errors++;
dev->trans_start = jiffies; /* prevent tx timeout */ dev->trans_start = jiffies; /* prevent tx timeout */
...@@ -845,8 +845,8 @@ static irqreturn_t el3_interrupt(int irq, void *dev_id) ...@@ -845,8 +845,8 @@ static irqreturn_t el3_interrupt(int irq, void *dev_id)
EL3WINDOW(4); EL3WINDOW(4);
fifo_diag = inw(ioaddr + Wn4_FIFODiag); fifo_diag = inw(ioaddr + Wn4_FIFODiag);
EL3WINDOW(1); EL3WINDOW(1);
printk(KERN_NOTICE "%s: adapter failure, FIFO diagnostic" netdev_notice(dev, "adapter failure, FIFO diagnostic register %04x\n",
" register %04x.\n", dev->name, fifo_diag); fifo_diag);
if (fifo_diag & 0x0400) { if (fifo_diag & 0x0400) {
/* Tx overrun */ /* Tx overrun */
tc574_wait_for_completion(dev, TxReset); tc574_wait_for_completion(dev, TxReset);
...@@ -900,7 +900,7 @@ static void media_check(unsigned long arg) ...@@ -900,7 +900,7 @@ static void media_check(unsigned long arg)
this, we can limp along even if the interrupt is blocked */ this, we can limp along even if the interrupt is blocked */
if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) { if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) {
if (!lp->fast_poll) if (!lp->fast_poll)
printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); netdev_info(dev, "interrupt(s) dropped!\n");
local_irq_save(flags); local_irq_save(flags);
el3_interrupt(dev->irq, dev); el3_interrupt(dev->irq, dev);
...@@ -923,23 +923,21 @@ static void media_check(unsigned long arg) ...@@ -923,23 +923,21 @@ static void media_check(unsigned long arg)
if (media != lp->media_status) { if (media != lp->media_status) {
if ((media ^ lp->media_status) & 0x0004) if ((media ^ lp->media_status) & 0x0004)
printk(KERN_INFO "%s: %s link beat\n", dev->name, netdev_info(dev, "%s link beat\n",
(lp->media_status & 0x0004) ? "lost" : "found"); (lp->media_status & 0x0004) ? "lost" : "found");
if ((media ^ lp->media_status) & 0x0020) { if ((media ^ lp->media_status) & 0x0020) {
lp->partner = 0; lp->partner = 0;
if (lp->media_status & 0x0020) { if (lp->media_status & 0x0020) {
printk(KERN_INFO "%s: autonegotiation restarted\n", netdev_info(dev, "autonegotiation restarted\n");
dev->name);
} else if (partner) { } else if (partner) {
partner &= lp->advertising; partner &= lp->advertising;
lp->partner = partner; lp->partner = partner;
printk(KERN_INFO "%s: autonegotiation complete: " netdev_info(dev, "autonegotiation complete: "
"%sbaseT-%cD selected\n", dev->name, "%dbaseT-%cD selected\n",
((partner & 0x0180) ? "100" : "10"), (partner & 0x0180) ? 100 : 10,
((partner & 0x0140) ? 'F' : 'H')); (partner & 0x0140) ? 'F' : 'H');
} else { } else {
printk(KERN_INFO "%s: link partner did not autonegotiate\n", netdev_info(dev, "link partner did not autonegotiate\n");
dev->name);
} }
EL3WINDOW(3); EL3WINDOW(3);
...@@ -949,10 +947,9 @@ static void media_check(unsigned long arg) ...@@ -949,10 +947,9 @@ static void media_check(unsigned long arg)
} }
if (media & 0x0010) if (media & 0x0010)
printk(KERN_INFO "%s: remote fault detected\n", netdev_info(dev, "remote fault detected\n");
dev->name);
if (media & 0x0002) if (media & 0x0002)
printk(KERN_INFO "%s: jabber detected\n", dev->name); netdev_info(dev, "jabber detected\n");
lp->media_status = media; lp->media_status = media;
} }
spin_unlock_irqrestore(&lp->window_lock, flags); spin_unlock_irqrestore(&lp->window_lock, flags);
......
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
======================================================================*/ ======================================================================*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#define DRV_NAME "3c589_cs" #define DRV_NAME "3c589_cs"
#define DRV_VERSION "1.162-ac" #define DRV_VERSION "1.162-ac"
...@@ -273,8 +275,7 @@ static int tc589_config(struct pcmcia_device *link) ...@@ -273,8 +275,7 @@ static int tc589_config(struct pcmcia_device *link)
phys_addr = (__be16 *)dev->dev_addr; phys_addr = (__be16 *)dev->dev_addr;
/* Is this a 3c562? */ /* Is this a 3c562? */
if (link->manf_id != MANFID_3COM) if (link->manf_id != MANFID_3COM)
printk(KERN_INFO "3c589_cs: hmmm, is this really a " dev_info(&link->dev, "hmmm, is this really a 3Com card??\n");
"3Com card??\n");
multi = (link->card_id == PRODID_3COM_3C562); multi = (link->card_id == PRODID_3COM_3C562);
link->io_lines = 16; link->io_lines = 16;
...@@ -315,8 +316,8 @@ static int tc589_config(struct pcmcia_device *link) ...@@ -315,8 +316,8 @@ static int tc589_config(struct pcmcia_device *link)
for (i = 0; i < 3; i++) for (i = 0; i < 3; i++)
phys_addr[i] = htons(read_eeprom(ioaddr, i)); phys_addr[i] = htons(read_eeprom(ioaddr, i));
if (phys_addr[0] == htons(0x6060)) { if (phys_addr[0] == htons(0x6060)) {
printk(KERN_ERR "3c589_cs: IO port conflict at 0x%03lx" dev_err(&link->dev, "IO port conflict at 0x%03lx-0x%03lx\n",
"-0x%03lx\n", dev->base_addr, dev->base_addr+15); dev->base_addr, dev->base_addr+15);
goto failed; goto failed;
} }
} }
...@@ -330,12 +331,12 @@ static int tc589_config(struct pcmcia_device *link) ...@@ -330,12 +331,12 @@ static int tc589_config(struct pcmcia_device *link)
if ((if_port >= 0) && (if_port <= 3)) if ((if_port >= 0) && (if_port <= 3))
dev->if_port = if_port; dev->if_port = if_port;
else else
printk(KERN_ERR "3c589_cs: invalid if_port requested\n"); dev_err(&link->dev, "invalid if_port requested\n");
SET_NETDEV_DEV(dev, &link->dev); SET_NETDEV_DEV(dev, &link->dev);
if (register_netdev(dev) != 0) { if (register_netdev(dev) != 0) {
printk(KERN_ERR "3c589_cs: register_netdev() failed\n"); dev_err(&link->dev, "register_netdev() failed\n");
goto failed; goto failed;
} }
......
This diff is collapsed.
...@@ -52,23 +52,23 @@ ...@@ -52,23 +52,23 @@
#define VERSION "arcnet: COM20020 PCMCIA support loaded.\n" #define VERSION "arcnet: COM20020 PCMCIA support loaded.\n"
#ifdef DEBUG
static void regdump(struct net_device *dev) static void regdump(struct net_device *dev)
{ {
#ifdef DEBUG
int ioaddr = dev->base_addr; int ioaddr = dev->base_addr;
int count; int count;
printk("com20020 register dump:\n"); netdev_dbg(dev, "register dump:\n");
for (count = ioaddr; count < ioaddr + 16; count++) for (count = ioaddr; count < ioaddr + 16; count++)
{ {
if (!(count % 16)) if (!(count % 16))
printk("\n%04X: ", count); pr_cont("%04X:", count);
printk("%02X ", inb(count)); pr_cont(" %02X", inb(count));
} }
printk("\n"); pr_cont("\n");
printk("buffer0 dump:\n"); netdev_dbg(dev, "buffer0 dump:\n");
/* set up the address register */ /* set up the address register */
count = 0; count = 0;
outb((count >> 8) | RDDATAflag | AUTOINCflag, _ADDR_HI); outb((count >> 8) | RDDATAflag | AUTOINCflag, _ADDR_HI);
...@@ -77,19 +77,15 @@ static void regdump(struct net_device *dev) ...@@ -77,19 +77,15 @@ static void regdump(struct net_device *dev)
for (count = 0; count < 256+32; count++) for (count = 0; count < 256+32; count++)
{ {
if (!(count % 16)) if (!(count % 16))
printk("\n%04X: ", count); pr_cont("%04X:", count);
/* copy the data */ /* copy the data */
printk("%02X ", inb(_MEMDATA)); pr_cont(" %02X", inb(_MEMDATA));
} }
printk("\n"); pr_cont("\n");
#endif
} }
#else
static inline void regdump(struct net_device *dev) { }
#endif
/*====================================================================*/ /*====================================================================*/
...@@ -301,13 +297,13 @@ static int com20020_config(struct pcmcia_device *link) ...@@ -301,13 +297,13 @@ static int com20020_config(struct pcmcia_device *link)
i = com20020_found(dev, 0); /* calls register_netdev */ i = com20020_found(dev, 0); /* calls register_netdev */
if (i != 0) { if (i != 0) {
dev_printk(KERN_NOTICE, &link->dev, dev_notice(&link->dev,
"com20020_cs: com20020_found() failed\n"); "com20020_found() failed\n");
goto failed; goto failed;
} }
dev_dbg(&link->dev,KERN_INFO "%s: port %#3lx, irq %d\n", netdev_dbg(dev, "port %#3lx, irq %d\n",
dev->name, dev->base_addr, dev->irq); dev->base_addr, dev->irq);
return 0; return 0;
failed: failed:
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
======================================================================*/ ======================================================================*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#define DRV_NAME "fmvj18x_cs" #define DRV_NAME "fmvj18x_cs"
#define DRV_VERSION "2.9" #define DRV_VERSION "2.9"
...@@ -291,7 +293,7 @@ static int mfc_try_io_port(struct pcmcia_device *link) ...@@ -291,7 +293,7 @@ static int mfc_try_io_port(struct pcmcia_device *link)
link->resource[1]->flags |= IO_DATA_PATH_WIDTH_8; link->resource[1]->flags |= IO_DATA_PATH_WIDTH_8;
if (link->resource[1]->start == 0) { if (link->resource[1]->start == 0) {
link->resource[1]->end = 0; link->resource[1]->end = 0;
printk(KERN_NOTICE "fmvj18x_cs: out of resource for serial\n"); pr_notice("out of resource for serial\n");
} }
ret = pcmcia_request_io(link); ret = pcmcia_request_io(link);
if (ret == 0) if (ret == 0)
...@@ -503,7 +505,7 @@ static int fmvj18x_config(struct pcmcia_device *link) ...@@ -503,7 +505,7 @@ static int fmvj18x_config(struct pcmcia_device *link)
case XXX10304: case XXX10304:
/* Read MACID from Buggy CIS */ /* Read MACID from Buggy CIS */
if (fmvj18x_get_hwinfo(link, buggybuf) == -1) { if (fmvj18x_get_hwinfo(link, buggybuf) == -1) {
printk(KERN_NOTICE "fmvj18x_cs: unable to read hardware net address.\n"); pr_notice("unable to read hardware net address\n");
goto failed; goto failed;
} }
for (i = 0 ; i < 6; i++) { for (i = 0 ; i < 6; i++) {
...@@ -524,15 +526,14 @@ static int fmvj18x_config(struct pcmcia_device *link) ...@@ -524,15 +526,14 @@ static int fmvj18x_config(struct pcmcia_device *link)
SET_NETDEV_DEV(dev, &link->dev); SET_NETDEV_DEV(dev, &link->dev);
if (register_netdev(dev) != 0) { if (register_netdev(dev) != 0) {
printk(KERN_NOTICE "fmvj18x_cs: register_netdev() failed\n"); pr_notice("register_netdev() failed\n");
goto failed; goto failed;
} }
/* print current configuration */ /* print current configuration */
printk(KERN_INFO "%s: %s, sram %s, port %#3lx, irq %d, " netdev_info(dev, "%s, sram %s, port %#3lx, irq %d, hw_addr %pM\n",
"hw_addr %pM\n", card_name, sram_config == 0 ? "4K TX*2" : "8K TX*2",
dev->name, card_name, sram_config == 0 ? "4K TX*2" : "8K TX*2", dev->base_addr, dev->irq, dev->dev_addr);
dev->base_addr, dev->irq, dev->dev_addr);
return 0; return 0;
...@@ -606,7 +607,7 @@ static int fmvj18x_setup_mfc(struct pcmcia_device *link) ...@@ -606,7 +607,7 @@ static int fmvj18x_setup_mfc(struct pcmcia_device *link)
lp->base = ioremap(req.Base, req.Size); lp->base = ioremap(req.Base, req.Size);
if (lp->base == NULL) { if (lp->base == NULL) {
printk(KERN_NOTICE "fmvj18x_cs: ioremap failed\n"); netdev_notice(dev, "ioremap failed\n");
return -1; return -1;
} }
...@@ -800,17 +801,16 @@ static void fjn_tx_timeout(struct net_device *dev) ...@@ -800,17 +801,16 @@ static void fjn_tx_timeout(struct net_device *dev)
struct local_info_t *lp = netdev_priv(dev); struct local_info_t *lp = netdev_priv(dev);
unsigned int ioaddr = dev->base_addr; unsigned int ioaddr = dev->base_addr;
printk(KERN_NOTICE "%s: transmit timed out with status %04x, %s?\n", netdev_notice(dev, "transmit timed out with status %04x, %s?\n",
dev->name, htons(inw(ioaddr + TX_STATUS)), htons(inw(ioaddr + TX_STATUS)),
inb(ioaddr + TX_STATUS) & F_TMT_RDY inb(ioaddr + TX_STATUS) & F_TMT_RDY
? "IRQ conflict" : "network cable problem"); ? "IRQ conflict" : "network cable problem");
printk(KERN_NOTICE "%s: timeout registers: %04x %04x %04x " netdev_notice(dev, "timeout registers: %04x %04x %04x "
"%04x %04x %04x %04x %04x.\n", "%04x %04x %04x %04x %04x.\n",
dev->name, htons(inw(ioaddr + 0)), htons(inw(ioaddr + 0)), htons(inw(ioaddr + 2)),
htons(inw(ioaddr + 2)), htons(inw(ioaddr + 4)), htons(inw(ioaddr + 4)), htons(inw(ioaddr + 6)),
htons(inw(ioaddr + 6)), htons(inw(ioaddr + 8)), htons(inw(ioaddr + 8)), htons(inw(ioaddr + 10)),
htons(inw(ioaddr +10)), htons(inw(ioaddr +12)), htons(inw(ioaddr + 12)), htons(inw(ioaddr + 14)));
htons(inw(ioaddr +14)));
dev->stats.tx_errors++; dev->stats.tx_errors++;
/* ToDo: We should try to restart the adaptor... */ /* ToDo: We should try to restart the adaptor... */
local_irq_disable(); local_irq_disable();
...@@ -845,13 +845,13 @@ static netdev_tx_t fjn_start_xmit(struct sk_buff *skb, ...@@ -845,13 +845,13 @@ static netdev_tx_t fjn_start_xmit(struct sk_buff *skb,
unsigned char *buf = skb->data; unsigned char *buf = skb->data;
if (length > ETH_FRAME_LEN) { if (length > ETH_FRAME_LEN) {
printk(KERN_NOTICE "%s: Attempting to send a large packet" netdev_notice(dev, "Attempting to send a large packet (%d bytes)\n",
" (%d bytes).\n", dev->name, length); length);
return NETDEV_TX_BUSY; return NETDEV_TX_BUSY;
} }
pr_debug("%s: Transmitting a packet of length %lu.\n", netdev_dbg(dev, "Transmitting a packet of length %lu\n",
dev->name, (unsigned long)skb->len); (unsigned long)skb->len);
dev->stats.tx_bytes += skb->len; dev->stats.tx_bytes += skb->len;
/* Disable both interrupts. */ /* Disable both interrupts. */
...@@ -904,7 +904,7 @@ static void fjn_reset(struct net_device *dev) ...@@ -904,7 +904,7 @@ static void fjn_reset(struct net_device *dev)
unsigned int ioaddr = dev->base_addr; unsigned int ioaddr = dev->base_addr;
int i; int i;
pr_debug("fjn_reset(%s) called.\n",dev->name); netdev_dbg(dev, "fjn_reset() called\n");
/* Reset controller */ /* Reset controller */
if( sram_config == 0 ) if( sram_config == 0 )
...@@ -988,8 +988,8 @@ static void fjn_rx(struct net_device *dev) ...@@ -988,8 +988,8 @@ static void fjn_rx(struct net_device *dev)
while ((inb(ioaddr + RX_MODE) & F_BUF_EMP) == 0) { while ((inb(ioaddr + RX_MODE) & F_BUF_EMP) == 0) {
u_short status = inw(ioaddr + DATAPORT); u_short status = inw(ioaddr + DATAPORT);
pr_debug("%s: Rxing packet mode %02x status %04x.\n", netdev_dbg(dev, "Rxing packet mode %02x status %04x.\n",
dev->name, inb(ioaddr + RX_MODE), status); inb(ioaddr + RX_MODE), status);
#ifndef final_version #ifndef final_version
if (status == 0) { if (status == 0) {
outb(F_SKP_PKT, ioaddr + RX_SKIP); outb(F_SKP_PKT, ioaddr + RX_SKIP);
...@@ -1008,16 +1008,16 @@ static void fjn_rx(struct net_device *dev) ...@@ -1008,16 +1008,16 @@ static void fjn_rx(struct net_device *dev)
struct sk_buff *skb; struct sk_buff *skb;
if (pkt_len > 1550) { if (pkt_len > 1550) {
printk(KERN_NOTICE "%s: The FMV-18x claimed a very " netdev_notice(dev, "The FMV-18x claimed a very large packet, size %d\n",
"large packet, size %d.\n", dev->name, pkt_len); pkt_len);
outb(F_SKP_PKT, ioaddr + RX_SKIP); outb(F_SKP_PKT, ioaddr + RX_SKIP);
dev->stats.rx_errors++; dev->stats.rx_errors++;
break; break;
} }
skb = dev_alloc_skb(pkt_len+2); skb = dev_alloc_skb(pkt_len+2);
if (skb == NULL) { if (skb == NULL) {
printk(KERN_NOTICE "%s: Memory squeeze, dropping " netdev_notice(dev, "Memory squeeze, dropping packet (len %d)\n",
"packet (len %d).\n", dev->name, pkt_len); pkt_len);
outb(F_SKP_PKT, ioaddr + RX_SKIP); outb(F_SKP_PKT, ioaddr + RX_SKIP);
dev->stats.rx_dropped++; dev->stats.rx_dropped++;
break; break;
......
...@@ -45,6 +45,8 @@ ...@@ -45,6 +45,8 @@
======================================================================*/ ======================================================================*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/ptrace.h> #include <linux/ptrace.h>
...@@ -272,15 +274,14 @@ static int __devinit ibmtr_config(struct pcmcia_device *link) ...@@ -272,15 +274,14 @@ static int __devinit ibmtr_config(struct pcmcia_device *link)
i = ibmtr_probe_card(dev); i = ibmtr_probe_card(dev);
if (i != 0) { if (i != 0) {
printk(KERN_NOTICE "ibmtr_cs: register_netdev() failed\n"); pr_notice("register_netdev() failed\n");
goto failed; goto failed;
} }
printk(KERN_INFO netdev_info(dev, "port %#3lx, irq %d, mmio %#5lx, sram %#5lx, hwaddr=%pM\n",
"%s: port %#3lx, irq %d, mmio %#5lx, sram %#5lx, hwaddr=%pM\n", dev->base_addr, dev->irq,
dev->name, dev->base_addr, dev->irq, (u_long)ti->mmio, (u_long)(ti->sram_base << 12),
(u_long)ti->mmio, (u_long)(ti->sram_base << 12), dev->dev_addr);
dev->dev_addr);
return 0; return 0;
failed: failed:
......
...@@ -111,6 +111,8 @@ Log: nmclan_cs.c,v ...@@ -111,6 +111,8 @@ Log: nmclan_cs.c,v
---------------------------------------------------------------------------- */ ---------------------------------------------------------------------------- */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#define DRV_NAME "nmclan_cs" #define DRV_NAME "nmclan_cs"
#define DRV_VERSION "0.16" #define DRV_VERSION "0.16"
...@@ -563,7 +565,7 @@ static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr) ...@@ -563,7 +565,7 @@ static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
/* Wait for reset bit to be cleared automatically after <= 200ns */; /* Wait for reset bit to be cleared automatically after <= 200ns */;
if(++ct > 500) if(++ct > 500)
{ {
printk(KERN_ERR "mace: reset failed, card removed ?\n"); pr_err("reset failed, card removed?\n");
return -1; return -1;
} }
udelay(1); udelay(1);
...@@ -610,7 +612,7 @@ static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr) ...@@ -610,7 +612,7 @@ static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
{ {
if(++ ct > 500) if(++ ct > 500)
{ {
printk(KERN_ERR "mace: ADDRCHG timeout, card removed ?\n"); pr_err("ADDRCHG timeout, card removed?\n");
return -1; return -1;
} }
} }
...@@ -678,8 +680,8 @@ static int nmclan_config(struct pcmcia_device *link) ...@@ -678,8 +680,8 @@ static int nmclan_config(struct pcmcia_device *link)
dev_dbg(&link->dev, "nmclan_cs configured: mace id=%x %x\n", dev_dbg(&link->dev, "nmclan_cs configured: mace id=%x %x\n",
sig[0], sig[1]); sig[0], sig[1]);
} else { } else {
printk(KERN_NOTICE "nmclan_cs: mace id not found: %x %x should" pr_notice("mace id not found: %x %x should be 0x40 0x?9\n",
" be 0x40 0x?9\n", sig[0], sig[1]); sig[0], sig[1]);
return -ENODEV; return -ENODEV;
} }
} }
...@@ -691,20 +693,18 @@ static int nmclan_config(struct pcmcia_device *link) ...@@ -691,20 +693,18 @@ static int nmclan_config(struct pcmcia_device *link)
if (if_port <= 2) if (if_port <= 2)
dev->if_port = if_port; dev->if_port = if_port;
else else
printk(KERN_NOTICE "nmclan_cs: invalid if_port requested\n"); pr_notice("invalid if_port requested\n");
SET_NETDEV_DEV(dev, &link->dev); SET_NETDEV_DEV(dev, &link->dev);
i = register_netdev(dev); i = register_netdev(dev);
if (i != 0) { if (i != 0) {
printk(KERN_NOTICE "nmclan_cs: register_netdev() failed\n"); pr_notice("register_netdev() failed\n");
goto failed; goto failed;
} }
printk(KERN_INFO "%s: nmclan: port %#3lx, irq %d, %s port," netdev_info(dev, "nmclan: port %#3lx, irq %d, %s port, hw_addr %pM\n",
" hw_addr %pM\n", dev->base_addr, dev->irq, if_names[dev->if_port], dev->dev_addr);
dev->name, dev->base_addr, dev->irq, if_names[dev->if_port],
dev->dev_addr);
return 0; return 0;
failed: failed:
...@@ -798,8 +798,7 @@ static int mace_config(struct net_device *dev, struct ifmap *map) ...@@ -798,8 +798,7 @@ static int mace_config(struct net_device *dev, struct ifmap *map)
if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) { if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
if (map->port <= 2) { if (map->port <= 2) {
dev->if_port = map->port; dev->if_port = map->port;
printk(KERN_INFO "%s: switched to %s port\n", dev->name, netdev_info(dev, "switched to %s port\n", if_names[dev->if_port]);
if_names[dev->if_port]);
} else } else
return -EINVAL; return -EINVAL;
} }
...@@ -878,12 +877,12 @@ static void mace_tx_timeout(struct net_device *dev) ...@@ -878,12 +877,12 @@ static void mace_tx_timeout(struct net_device *dev)
mace_private *lp = netdev_priv(dev); mace_private *lp = netdev_priv(dev);
struct pcmcia_device *link = lp->p_dev; struct pcmcia_device *link = lp->p_dev;
printk(KERN_NOTICE "%s: transmit timed out -- ", dev->name); netdev_notice(dev, "transmit timed out -- ");
#if RESET_ON_TIMEOUT #if RESET_ON_TIMEOUT
printk("resetting card\n"); pr_cont("resetting card\n");
pcmcia_reset_card(link->socket); pcmcia_reset_card(link->socket);
#else /* #if RESET_ON_TIMEOUT */ #else /* #if RESET_ON_TIMEOUT */
printk("NOT resetting card\n"); pr_cont("NOT resetting card\n");
#endif /* #if RESET_ON_TIMEOUT */ #endif /* #if RESET_ON_TIMEOUT */
dev->trans_start = jiffies; /* prevent tx timeout */ dev->trans_start = jiffies; /* prevent tx timeout */
netif_wake_queue(dev); netif_wake_queue(dev);
...@@ -965,22 +964,21 @@ static irqreturn_t mace_interrupt(int irq, void *dev_id) ...@@ -965,22 +964,21 @@ static irqreturn_t mace_interrupt(int irq, void *dev_id)
ioaddr = dev->base_addr; ioaddr = dev->base_addr;
if (lp->tx_irq_disabled) { if (lp->tx_irq_disabled) {
printk( const char *msg;
(lp->tx_irq_disabled? if (lp->tx_irq_disabled)
KERN_NOTICE "%s: Interrupt with tx_irq_disabled " msg = "Interrupt with tx_irq_disabled";
"[isr=%02X, imr=%02X]\n": else
KERN_NOTICE "%s: Re-entering the interrupt handler " msg = "Re-entering the interrupt handler";
"[isr=%02X, imr=%02X]\n"), netdev_notice(dev, "%s [isr=%02X, imr=%02X]\n",
dev->name, msg,
inb(ioaddr + AM2150_MACE_BASE + MACE_IR), inb(ioaddr + AM2150_MACE_BASE + MACE_IR),
inb(ioaddr + AM2150_MACE_BASE + MACE_IMR) inb(ioaddr + AM2150_MACE_BASE + MACE_IMR));
);
/* WARNING: MACE_IR has been read! */ /* WARNING: MACE_IR has been read! */
return IRQ_NONE; return IRQ_NONE;
} }
if (!netif_device_present(dev)) { if (!netif_device_present(dev)) {
pr_debug("%s: interrupt from dead card\n", dev->name); netdev_dbg(dev, "interrupt from dead card\n");
return IRQ_NONE; return IRQ_NONE;
} }
...@@ -1378,8 +1376,8 @@ static void BuildLAF(int *ladrf, int *adr) ...@@ -1378,8 +1376,8 @@ static void BuildLAF(int *ladrf, int *adr)
printk(KERN_DEBUG " adr =%pM\n", adr); printk(KERN_DEBUG " adr =%pM\n", adr);
printk(KERN_DEBUG " hashcode = %d(decimal), ladrf[0:63] =", hashcode); printk(KERN_DEBUG " hashcode = %d(decimal), ladrf[0:63] =", hashcode);
for (i = 0; i < 8; i++) for (i = 0; i < 8; i++)
printk(KERN_CONT " %02X", ladrf[i]); pr_cont(" %02X", ladrf[i]);
printk(KERN_CONT "\n"); pr_cont("\n");
#endif #endif
} /* BuildLAF */ } /* BuildLAF */
......
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
======================================================================*/ ======================================================================*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/init.h> #include <linux/init.h>
...@@ -820,7 +822,7 @@ static int check_sig(struct pcmcia_device *link) ...@@ -820,7 +822,7 @@ static int check_sig(struct pcmcia_device *link)
modconf_t mod = { modconf_t mod = {
.Attributes = CONF_IO_CHANGE_WIDTH, .Attributes = CONF_IO_CHANGE_WIDTH,
}; };
printk(KERN_INFO "smc91c92_cs: using 8-bit IO window.\n"); pr_info("using 8-bit IO window\n");
smc91c92_suspend(link); smc91c92_suspend(link);
pcmcia_modify_configuration(link, &mod); pcmcia_modify_configuration(link, &mod);
...@@ -881,7 +883,7 @@ static int smc91c92_config(struct pcmcia_device *link) ...@@ -881,7 +883,7 @@ static int smc91c92_config(struct pcmcia_device *link)
if ((if_port >= 0) && (if_port <= 2)) if ((if_port >= 0) && (if_port <= 2))
dev->if_port = if_port; dev->if_port = if_port;
else else
printk(KERN_NOTICE "smc91c92_cs: invalid if_port requested\n"); dev_notice(&link->dev, "invalid if_port requested\n");
switch (smc->manfid) { switch (smc->manfid) {
case MANFID_OSITECH: case MANFID_OSITECH:
...@@ -899,7 +901,7 @@ static int smc91c92_config(struct pcmcia_device *link) ...@@ -899,7 +901,7 @@ static int smc91c92_config(struct pcmcia_device *link)
} }
if (i != 0) { if (i != 0) {
printk(KERN_NOTICE "smc91c92_cs: Unable to find hardware address.\n"); dev_notice(&link->dev, "Unable to find hardware address.\n");
goto config_failed; goto config_failed;
} }
...@@ -952,30 +954,28 @@ static int smc91c92_config(struct pcmcia_device *link) ...@@ -952,30 +954,28 @@ static int smc91c92_config(struct pcmcia_device *link)
SET_NETDEV_DEV(dev, &link->dev); SET_NETDEV_DEV(dev, &link->dev);
if (register_netdev(dev) != 0) { if (register_netdev(dev) != 0) {
printk(KERN_ERR "smc91c92_cs: register_netdev() failed\n"); dev_err(&link->dev, "register_netdev() failed\n");
goto config_undo; goto config_undo;
} }
printk(KERN_INFO "%s: smc91c%s rev %d: io %#3lx, irq %d, " netdev_info(dev, "smc91c%s rev %d: io %#3lx, irq %d, hw_addr %pM\n",
"hw_addr %pM\n", name, (rev & 0x0f), dev->base_addr, dev->irq, dev->dev_addr);
dev->name, name, (rev & 0x0f), dev->base_addr, dev->irq,
dev->dev_addr);
if (rev > 0) { if (rev > 0) {
if (mir & 0x3ff) if (mir & 0x3ff)
printk(KERN_INFO " %lu byte", mir); netdev_info(dev, " %lu byte", mir);
else else
printk(KERN_INFO " %lu kb", mir>>10); netdev_info(dev, " %lu kb", mir>>10);
printk(" buffer, %s xcvr\n", (smc->cfg & CFG_MII_SELECT) ? pr_cont(" buffer, %s xcvr\n",
"MII" : if_names[dev->if_port]); (smc->cfg & CFG_MII_SELECT) ? "MII" : if_names[dev->if_port]);
} }
if (smc->cfg & CFG_MII_SELECT) { if (smc->cfg & CFG_MII_SELECT) {
if (smc->mii_if.phy_id != -1) { if (smc->mii_if.phy_id != -1) {
dev_dbg(&link->dev, " MII transceiver at index %d, status %x.\n", netdev_dbg(dev, " MII transceiver at index %d, status %x\n",
smc->mii_if.phy_id, j); smc->mii_if.phy_id, j);
} else { } else {
printk(KERN_NOTICE " No MII transceivers found!\n"); netdev_notice(dev, " No MII transceivers found!\n");
} }
} }
return 0; return 0;
...@@ -1081,10 +1081,10 @@ static void smc_dump(struct net_device *dev) ...@@ -1081,10 +1081,10 @@ static void smc_dump(struct net_device *dev)
save = inw(ioaddr + BANK_SELECT); save = inw(ioaddr + BANK_SELECT);
for (w = 0; w < 4; w++) { for (w = 0; w < 4; w++) {
SMC_SELECT_BANK(w); SMC_SELECT_BANK(w);
printk(KERN_DEBUG "bank %d: ", w); netdev_printk(KERN_DEBUG, dev, "bank %d: ", w);
for (i = 0; i < 14; i += 2) for (i = 0; i < 14; i += 2)
printk(" %04x", inw(ioaddr + i)); pr_cont(" %04x", inw(ioaddr + i));
printk("\n"); pr_cont("\n");
} }
outw(save, ioaddr + BANK_SELECT); outw(save, ioaddr + BANK_SELECT);
} }
...@@ -1106,7 +1106,7 @@ static int smc_open(struct net_device *dev) ...@@ -1106,7 +1106,7 @@ static int smc_open(struct net_device *dev)
return -ENODEV; return -ENODEV;
/* Physical device present signature. */ /* Physical device present signature. */
if (check_sig(link) < 0) { if (check_sig(link) < 0) {
printk("smc91c92_cs: Yikes! Bad chip signature!\n"); netdev_info(dev, "Yikes! Bad chip signature!\n");
return -ENODEV; return -ENODEV;
} }
link->open++; link->open++;
...@@ -1172,7 +1172,7 @@ static void smc_hardware_send_packet(struct net_device * dev) ...@@ -1172,7 +1172,7 @@ static void smc_hardware_send_packet(struct net_device * dev)
u_char packet_no; u_char packet_no;
if (!skb) { if (!skb) {
printk(KERN_ERR "%s: In XMIT with no packet to send.\n", dev->name); netdev_err(dev, "In XMIT with no packet to send\n");
return; return;
} }
...@@ -1180,8 +1180,8 @@ static void smc_hardware_send_packet(struct net_device * dev) ...@@ -1180,8 +1180,8 @@ static void smc_hardware_send_packet(struct net_device * dev)
packet_no = inw(ioaddr + PNR_ARR) >> 8; packet_no = inw(ioaddr + PNR_ARR) >> 8;
if (packet_no & 0x80) { if (packet_no & 0x80) {
/* If not, there is a hardware problem! Likely an ejected card. */ /* If not, there is a hardware problem! Likely an ejected card. */
printk(KERN_WARNING "%s: 91c92 hardware Tx buffer allocation" netdev_warn(dev, "hardware Tx buffer allocation failed, status %#2.2x\n",
" failed, status %#2.2x.\n", dev->name, packet_no); packet_no);
dev_kfree_skb_irq(skb); dev_kfree_skb_irq(skb);
smc->saved_skb = NULL; smc->saved_skb = NULL;
netif_start_queue(dev); netif_start_queue(dev);
...@@ -1200,8 +1200,7 @@ static void smc_hardware_send_packet(struct net_device * dev) ...@@ -1200,8 +1200,7 @@ static void smc_hardware_send_packet(struct net_device * dev)
u_char *buf = skb->data; u_char *buf = skb->data;
u_int length = skb->len; /* The chip will pad to ethernet min. */ u_int length = skb->len; /* The chip will pad to ethernet min. */
pr_debug("%s: Trying to xmit packet of length %d.\n", netdev_dbg(dev, "Trying to xmit packet of length %d\n", length);
dev->name, length);
/* send the packet length: +6 for status word, length, and ctl */ /* send the packet length: +6 for status word, length, and ctl */
outw(0, ioaddr + DATA_1); outw(0, ioaddr + DATA_1);
...@@ -1233,9 +1232,8 @@ static void smc_tx_timeout(struct net_device *dev) ...@@ -1233,9 +1232,8 @@ static void smc_tx_timeout(struct net_device *dev)
struct smc_private *smc = netdev_priv(dev); struct smc_private *smc = netdev_priv(dev);
unsigned int ioaddr = dev->base_addr; unsigned int ioaddr = dev->base_addr;
printk(KERN_NOTICE "%s: SMC91c92 transmit timed out, " netdev_notice(dev, "transmit timed out, Tx_status %2.2x status %4.4x.\n",
"Tx_status %2.2x status %4.4x.\n", inw(ioaddr)&0xff, inw(ioaddr + 2));
dev->name, inw(ioaddr)&0xff, inw(ioaddr + 2));
dev->stats.tx_errors++; dev->stats.tx_errors++;
smc_reset(dev); smc_reset(dev);
dev->trans_start = jiffies; /* prevent tx timeout */ dev->trans_start = jiffies; /* prevent tx timeout */
...@@ -1254,14 +1252,14 @@ static netdev_tx_t smc_start_xmit(struct sk_buff *skb, ...@@ -1254,14 +1252,14 @@ static netdev_tx_t smc_start_xmit(struct sk_buff *skb,
netif_stop_queue(dev); netif_stop_queue(dev);
pr_debug("%s: smc_start_xmit(length = %d) called," netdev_dbg(dev, "smc_start_xmit(length = %d) called, status %04x\n",
" status %4.4x.\n", dev->name, skb->len, inw(ioaddr + 2)); skb->len, inw(ioaddr + 2));
if (smc->saved_skb) { if (smc->saved_skb) {
/* THIS SHOULD NEVER HAPPEN. */ /* THIS SHOULD NEVER HAPPEN. */
dev->stats.tx_aborted_errors++; dev->stats.tx_aborted_errors++;
printk(KERN_DEBUG "%s: Internal error -- sent packet while busy.\n", netdev_printk(KERN_DEBUG, dev,
dev->name); "Internal error -- sent packet while busy\n");
return NETDEV_TX_BUSY; return NETDEV_TX_BUSY;
} }
smc->saved_skb = skb; smc->saved_skb = skb;
...@@ -1269,7 +1267,7 @@ static netdev_tx_t smc_start_xmit(struct sk_buff *skb, ...@@ -1269,7 +1267,7 @@ static netdev_tx_t smc_start_xmit(struct sk_buff *skb,
num_pages = skb->len >> 8; num_pages = skb->len >> 8;
if (num_pages > 7) { if (num_pages > 7) {
printk(KERN_ERR "%s: Far too big packet error.\n", dev->name); netdev_err(dev, "Far too big packet error: %d pages\n", num_pages);
dev_kfree_skb (skb); dev_kfree_skb (skb);
smc->saved_skb = NULL; smc->saved_skb = NULL;
dev->stats.tx_dropped++; dev->stats.tx_dropped++;
...@@ -1339,8 +1337,7 @@ static void smc_tx_err(struct net_device * dev) ...@@ -1339,8 +1337,7 @@ static void smc_tx_err(struct net_device * dev)
} }
if (tx_status & TS_SUCCESS) { if (tx_status & TS_SUCCESS) {
printk(KERN_NOTICE "%s: Successful packet caused error " netdev_notice(dev, "Successful packet caused error interrupt?\n");
"interrupt?\n", dev->name);
} }
/* re-enable transmit */ /* re-enable transmit */
SMC_SELECT_BANK(0); SMC_SELECT_BANK(0);
...@@ -1530,8 +1527,7 @@ static void smc_rx(struct net_device *dev) ...@@ -1530,8 +1527,7 @@ static void smc_rx(struct net_device *dev)
/* Assertion: we are in Window 2. */ /* Assertion: we are in Window 2. */
if (inw(ioaddr + FIFO_PORTS) & FP_RXEMPTY) { if (inw(ioaddr + FIFO_PORTS) & FP_RXEMPTY) {
printk(KERN_ERR "%s: smc_rx() with nothing on Rx FIFO.\n", netdev_err(dev, "smc_rx() with nothing on Rx FIFO\n");
dev->name);
return; return;
} }
...@@ -1646,8 +1642,7 @@ static int s9k_config(struct net_device *dev, struct ifmap *map) ...@@ -1646,8 +1642,7 @@ static int s9k_config(struct net_device *dev, struct ifmap *map)
else if (map->port > 2) else if (map->port > 2)
return -EINVAL; return -EINVAL;
dev->if_port = map->port; dev->if_port = map->port;
printk(KERN_INFO "%s: switched to %s port\n", netdev_info(dev, "switched to %s port\n", if_names[dev->if_port]);
dev->name, if_names[dev->if_port]);
smc_reset(dev); smc_reset(dev);
} }
return 0; return 0;
...@@ -1798,7 +1793,7 @@ static void media_check(u_long arg) ...@@ -1798,7 +1793,7 @@ static void media_check(u_long arg)
this, we can limp along even if the interrupt is blocked */ this, we can limp along even if the interrupt is blocked */
if (smc->watchdog++ && ((i>>8) & i)) { if (smc->watchdog++ && ((i>>8) & i)) {
if (!smc->fast_poll) if (!smc->fast_poll)
printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); netdev_info(dev, "interrupt(s) dropped!\n");
local_irq_save(flags); local_irq_save(flags);
smc_interrupt(dev->irq, dev); smc_interrupt(dev->irq, dev);
local_irq_restore(flags); local_irq_restore(flags);
...@@ -1822,7 +1817,7 @@ static void media_check(u_long arg) ...@@ -1822,7 +1817,7 @@ static void media_check(u_long arg)
SMC_SELECT_BANK(3); SMC_SELECT_BANK(3);
link = mdio_read(dev, smc->mii_if.phy_id, 1); link = mdio_read(dev, smc->mii_if.phy_id, 1);
if (!link || (link == 0xffff)) { if (!link || (link == 0xffff)) {
printk(KERN_INFO "%s: MII is missing!\n", dev->name); netdev_info(dev, "MII is missing!\n");
smc->mii_if.phy_id = -1; smc->mii_if.phy_id = -1;
goto reschedule; goto reschedule;
} }
...@@ -1830,15 +1825,13 @@ static void media_check(u_long arg) ...@@ -1830,15 +1825,13 @@ static void media_check(u_long arg)
link &= 0x0004; link &= 0x0004;
if (link != smc->link_status) { if (link != smc->link_status) {
u_short p = mdio_read(dev, smc->mii_if.phy_id, 5); u_short p = mdio_read(dev, smc->mii_if.phy_id, 5);
printk(KERN_INFO "%s: %s link beat\n", dev->name, netdev_info(dev, "%s link beat\n", link ? "found" : "lost");
(link) ? "found" : "lost");
smc->duplex = (((p & 0x0100) || ((p & 0x1c0) == 0x40)) smc->duplex = (((p & 0x0100) || ((p & 0x1c0) == 0x40))
? TCR_FDUPLX : 0); ? TCR_FDUPLX : 0);
if (link) { if (link) {
printk(KERN_INFO "%s: autonegotiation complete: " netdev_info(dev, "autonegotiation complete: "
"%sbaseT-%cD selected\n", dev->name, "%dbaseT-%cD selected\n",
((p & 0x0180) ? "100" : "10"), (p & 0x0180) ? 100 : 10, smc->duplex ? 'F' : 'H');
(smc->duplex ? 'F' : 'H'));
} }
SMC_SELECT_BANK(0); SMC_SELECT_BANK(0);
outw(inw(ioaddr + TCR) | smc->duplex, ioaddr + TCR); outw(inw(ioaddr + TCR) | smc->duplex, ioaddr + TCR);
...@@ -1857,25 +1850,23 @@ static void media_check(u_long arg) ...@@ -1857,25 +1850,23 @@ static void media_check(u_long arg)
if (media != smc->media_status) { if (media != smc->media_status) {
if ((media & smc->media_status & 1) && if ((media & smc->media_status & 1) &&
((smc->media_status ^ media) & EPH_LINK_OK)) ((smc->media_status ^ media) & EPH_LINK_OK))
printk(KERN_INFO "%s: %s link beat\n", dev->name, netdev_info(dev, "%s link beat\n",
(smc->media_status & EPH_LINK_OK ? "lost" : "found")); smc->media_status & EPH_LINK_OK ? "lost" : "found");
else if ((media & smc->media_status & 2) && else if ((media & smc->media_status & 2) &&
((smc->media_status ^ media) & EPH_16COL)) ((smc->media_status ^ media) & EPH_16COL))
printk(KERN_INFO "%s: coax cable %s\n", dev->name, netdev_info(dev, "coax cable %s\n",
(media & EPH_16COL ? "problem" : "ok")); media & EPH_16COL ? "problem" : "ok");
if (dev->if_port == 0) { if (dev->if_port == 0) {
if (media & 1) { if (media & 1) {
if (media & EPH_LINK_OK) if (media & EPH_LINK_OK)
printk(KERN_INFO "%s: flipped to 10baseT\n", netdev_info(dev, "flipped to 10baseT\n");
dev->name);
else else
smc_set_xcvr(dev, 2); smc_set_xcvr(dev, 2);
} else { } else {
if (media & EPH_16COL) if (media & EPH_16COL)
smc_set_xcvr(dev, 1); smc_set_xcvr(dev, 1);
else else
printk(KERN_INFO "%s: flipped to 10base2\n", netdev_info(dev, "flipped to 10base2\n");
dev->name);
} }
} }
smc->media_status = media; smc->media_status = media;
......
...@@ -63,6 +63,8 @@ ...@@ -63,6 +63,8 @@
* OF THE POSSIBILITY OF SUCH DAMAGE. * OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/init.h> #include <linux/init.h>
...@@ -210,13 +212,6 @@ enum xirc_cmd { /* Commands */ ...@@ -210,13 +212,6 @@ enum xirc_cmd { /* Commands */
static const char *if_names[] = { "Auto", "10BaseT", "10Base2", "AUI", "100BaseT" }; static const char *if_names[] = { "Auto", "10BaseT", "10Base2", "AUI", "100BaseT" };
#define KDBG_XIRC KERN_DEBUG "xirc2ps_cs: "
#define KERR_XIRC KERN_ERR "xirc2ps_cs: "
#define KWRN_XIRC KERN_WARNING "xirc2ps_cs: "
#define KNOT_XIRC KERN_NOTICE "xirc2ps_cs: "
#define KINF_XIRC KERN_INFO "xirc2ps_cs: "
/* card types */ /* card types */
#define XIR_UNKNOWN 0 /* unknown: not supported */ #define XIR_UNKNOWN 0 /* unknown: not supported */
#define XIR_CE 1 /* (prodid 1) different hardware: not supported */ #define XIR_CE 1 /* (prodid 1) different hardware: not supported */
...@@ -350,26 +345,26 @@ PrintRegisters(struct net_device *dev) ...@@ -350,26 +345,26 @@ PrintRegisters(struct net_device *dev)
if (pc_debug > 1) { if (pc_debug > 1) {
int i, page; int i, page;
printk(KDBG_XIRC "Register common: "); printk(KERN_DEBUG pr_fmt("Register common: "));
for (i = 0; i < 8; i++) for (i = 0; i < 8; i++)
printk(" %2.2x", GetByte(i)); pr_cont(" %2.2x", GetByte(i));
printk("\n"); pr_cont("\n");
for (page = 0; page <= 8; page++) { for (page = 0; page <= 8; page++) {
printk(KDBG_XIRC "Register page %2x: ", page); printk(KERN_DEBUG pr_fmt("Register page %2x: "), page);
SelectPage(page); SelectPage(page);
for (i = 8; i < 16; i++) for (i = 8; i < 16; i++)
printk(" %2.2x", GetByte(i)); pr_cont(" %2.2x", GetByte(i));
printk("\n"); pr_cont("\n");
} }
for (page=0x40 ; page <= 0x5f; page++) { for (page=0x40 ; page <= 0x5f; page++) {
if (page == 0x43 || (page >= 0x46 && page <= 0x4f) || if (page == 0x43 || (page >= 0x46 && page <= 0x4f) ||
(page >= 0x51 && page <=0x5e)) (page >= 0x51 && page <=0x5e))
continue; continue;
printk(KDBG_XIRC "Register page %2x: ", page); printk(KERN_DEBUG pr_fmt("Register page %2x: "), page);
SelectPage(page); SelectPage(page);
for (i = 8; i < 16; i++) for (i = 8; i < 16; i++)
printk(" %2.2x", GetByte(i)); pr_cont(" %2.2x", GetByte(i));
printk("\n"); pr_cont("\n");
} }
} }
} }
...@@ -608,11 +603,11 @@ set_card_type(struct pcmcia_device *link) ...@@ -608,11 +603,11 @@ set_card_type(struct pcmcia_device *link)
local->modem = 0; local->modem = 0;
local->card_type = XIR_UNKNOWN; local->card_type = XIR_UNKNOWN;
if (!(prodid & 0x40)) { if (!(prodid & 0x40)) {
printk(KNOT_XIRC "Ooops: Not a creditcard\n"); pr_notice("Oops: Not a creditcard\n");
return 0; return 0;
} }
if (!(mediaid & 0x01)) { if (!(mediaid & 0x01)) {
printk(KNOT_XIRC "Not an Ethernet card\n"); pr_notice("Not an Ethernet card\n");
return 0; return 0;
} }
if (mediaid & 0x10) { if (mediaid & 0x10) {
...@@ -643,12 +638,11 @@ set_card_type(struct pcmcia_device *link) ...@@ -643,12 +638,11 @@ set_card_type(struct pcmcia_device *link)
} }
} }
if (local->card_type == XIR_CE || local->card_type == XIR_CEM) { if (local->card_type == XIR_CE || local->card_type == XIR_CEM) {
printk(KNOT_XIRC "Sorry, this is an old CE card\n"); pr_notice("Sorry, this is an old CE card\n");
return 0; return 0;
} }
if (local->card_type == XIR_UNKNOWN) if (local->card_type == XIR_UNKNOWN)
printk(KNOT_XIRC "unknown card (mediaid=%02x prodid=%02x)\n", pr_notice("unknown card (mediaid=%02x prodid=%02x)\n", mediaid, prodid);
mediaid, prodid);
return 1; return 1;
} }
...@@ -748,7 +742,7 @@ xirc2ps_config(struct pcmcia_device * link) ...@@ -748,7 +742,7 @@ xirc2ps_config(struct pcmcia_device * link)
/* Is this a valid card */ /* Is this a valid card */
if (link->has_manf_id == 0) { if (link->has_manf_id == 0) {
printk(KNOT_XIRC "manfid not found in CIS\n"); pr_notice("manfid not found in CIS\n");
goto failure; goto failure;
} }
...@@ -770,14 +764,14 @@ xirc2ps_config(struct pcmcia_device * link) ...@@ -770,14 +764,14 @@ xirc2ps_config(struct pcmcia_device * link)
local->manf_str = "Toshiba"; local->manf_str = "Toshiba";
break; break;
default: default:
printk(KNOT_XIRC "Unknown Card Manufacturer ID: 0x%04x\n", pr_notice("Unknown Card Manufacturer ID: 0x%04x\n",
(unsigned)link->manf_id); (unsigned)link->manf_id);
goto failure; goto failure;
} }
dev_dbg(&link->dev, "found %s card\n", local->manf_str); dev_dbg(&link->dev, "found %s card\n", local->manf_str);
if (!set_card_type(link)) { if (!set_card_type(link)) {
printk(KNOT_XIRC "this card is not supported\n"); pr_notice("this card is not supported\n");
goto failure; goto failure;
} }
...@@ -803,7 +797,7 @@ xirc2ps_config(struct pcmcia_device * link) ...@@ -803,7 +797,7 @@ xirc2ps_config(struct pcmcia_device * link)
err = pcmcia_loop_tuple(link, CISTPL_FUNCE, pcmcia_get_mac_ce, dev); err = pcmcia_loop_tuple(link, CISTPL_FUNCE, pcmcia_get_mac_ce, dev);
if (err) { if (err) {
printk(KNOT_XIRC "node-id not found in CIS\n"); pr_notice("node-id not found in CIS\n");
goto failure; goto failure;
} }
...@@ -838,7 +832,7 @@ xirc2ps_config(struct pcmcia_device * link) ...@@ -838,7 +832,7 @@ xirc2ps_config(struct pcmcia_device * link)
* try to configure as Ethernet only. * try to configure as Ethernet only.
* .... */ * .... */
} }
printk(KNOT_XIRC "no ports available\n"); pr_notice("no ports available\n");
} else { } else {
link->resource[0]->end = 16; link->resource[0]->end = 16;
for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) { for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
...@@ -911,24 +905,24 @@ xirc2ps_config(struct pcmcia_device * link) ...@@ -911,24 +905,24 @@ xirc2ps_config(struct pcmcia_device * link)
#if 0 #if 0
{ {
u_char tmp; u_char tmp;
printk(KERN_INFO "ECOR:"); pr_info("ECOR:");
for (i=0; i < 7; i++) { for (i=0; i < 7; i++) {
tmp = readb(local->dingo_ccr + i*2); tmp = readb(local->dingo_ccr + i*2);
printk(" %02x", tmp); pr_cont(" %02x", tmp);
} }
printk("\n"); pr_cont("\n");
printk(KERN_INFO "DCOR:"); pr_info("DCOR:");
for (i=0; i < 4; i++) { for (i=0; i < 4; i++) {
tmp = readb(local->dingo_ccr + 0x20 + i*2); tmp = readb(local->dingo_ccr + 0x20 + i*2);
printk(" %02x", tmp); pr_cont(" %02x", tmp);
} }
printk("\n"); pr_cont("\n");
printk(KERN_INFO "SCOR:"); pr_info("SCOR:");
for (i=0; i < 10; i++) { for (i=0; i < 10; i++) {
tmp = readb(local->dingo_ccr + 0x40 + i*2); tmp = readb(local->dingo_ccr + 0x40 + i*2);
printk(" %02x", tmp); pr_cont(" %02x", tmp);
} }
printk("\n"); pr_cont("\n");
} }
#endif #endif
...@@ -947,7 +941,7 @@ xirc2ps_config(struct pcmcia_device * link) ...@@ -947,7 +941,7 @@ xirc2ps_config(struct pcmcia_device * link)
(local->mohawk && if_port==4)) (local->mohawk && if_port==4))
dev->if_port = if_port; dev->if_port = if_port;
else else
printk(KNOT_XIRC "invalid if_port requested\n"); pr_notice("invalid if_port requested\n");
/* we can now register the device with the net subsystem */ /* we can now register the device with the net subsystem */
dev->irq = link->irq; dev->irq = link->irq;
...@@ -959,14 +953,14 @@ xirc2ps_config(struct pcmcia_device * link) ...@@ -959,14 +953,14 @@ xirc2ps_config(struct pcmcia_device * link)
SET_NETDEV_DEV(dev, &link->dev); SET_NETDEV_DEV(dev, &link->dev);
if ((err=register_netdev(dev))) { if ((err=register_netdev(dev))) {
printk(KNOT_XIRC "register_netdev() failed\n"); pr_notice("register_netdev() failed\n");
goto config_error; goto config_error;
} }
/* give some infos about the hardware */ /* give some infos about the hardware */
printk(KERN_INFO "%s: %s: port %#3lx, irq %d, hwaddr %pM\n", netdev_info(dev, "%s: port %#3lx, irq %d, hwaddr %pM\n",
dev->name, local->manf_str,(u_long)dev->base_addr, (int)dev->irq, local->manf_str, (u_long)dev->base_addr, (int)dev->irq,
dev->dev_addr); dev->dev_addr);
return 0; return 0;
...@@ -1098,8 +1092,7 @@ xirc2ps_interrupt(int irq, void *dev_id) ...@@ -1098,8 +1092,7 @@ xirc2ps_interrupt(int irq, void *dev_id)
skb = dev_alloc_skb(pktlen+3); /* 1 extra so we can use insw */ skb = dev_alloc_skb(pktlen+3); /* 1 extra so we can use insw */
if (!skb) { if (!skb) {
printk(KNOT_XIRC "low memory, packet dropped (size=%u)\n", pr_notice("low memory, packet dropped (size=%u)\n", pktlen);
pktlen);
dev->stats.rx_dropped++; dev->stats.rx_dropped++;
} else { /* okay get the packet */ } else { /* okay get the packet */
skb_reserve(skb, 2); skb_reserve(skb, 2);
...@@ -1268,7 +1261,7 @@ xirc_tx_timeout(struct net_device *dev) ...@@ -1268,7 +1261,7 @@ xirc_tx_timeout(struct net_device *dev)
{ {
local_info_t *lp = netdev_priv(dev); local_info_t *lp = netdev_priv(dev);
dev->stats.tx_errors++; dev->stats.tx_errors++;
printk(KERN_NOTICE "%s: transmit timed out\n", dev->name); netdev_notice(dev, "transmit timed out\n");
schedule_work(&lp->tx_timeout_task); schedule_work(&lp->tx_timeout_task);
} }
...@@ -1435,8 +1428,7 @@ do_config(struct net_device *dev, struct ifmap *map) ...@@ -1435,8 +1428,7 @@ do_config(struct net_device *dev, struct ifmap *map)
local->probe_port = 0; local->probe_port = 0;
dev->if_port = map->port; dev->if_port = map->port;
} }
printk(KERN_INFO "%s: switching to %s port\n", netdev_info(dev, "switching to %s port\n", if_names[dev->if_port]);
dev->name, if_names[dev->if_port]);
do_reset(dev,1); /* not the fine way :-) */ do_reset(dev,1); /* not the fine way :-) */
} }
return 0; return 0;
...@@ -1576,7 +1568,7 @@ do_reset(struct net_device *dev, int full) ...@@ -1576,7 +1568,7 @@ do_reset(struct net_device *dev, int full)
{ {
SelectPage(0); SelectPage(0);
value = GetByte(XIRCREG_ESR); /* read the ESR */ value = GetByte(XIRCREG_ESR); /* read the ESR */
printk(KERN_DEBUG "%s: ESR is: %#02x\n", dev->name, value); pr_debug("%s: ESR is: %#02x\n", dev->name, value);
} }
#endif #endif
...@@ -1626,13 +1618,12 @@ do_reset(struct net_device *dev, int full) ...@@ -1626,13 +1618,12 @@ do_reset(struct net_device *dev, int full)
if (full && local->mohawk && init_mii(dev)) { if (full && local->mohawk && init_mii(dev)) {
if (dev->if_port == 4 || local->dingo || local->new_mii) { if (dev->if_port == 4 || local->dingo || local->new_mii) {
printk(KERN_INFO "%s: MII selected\n", dev->name); netdev_info(dev, "MII selected\n");
SelectPage(2); SelectPage(2);
PutByte(XIRCREG2_MSR, GetByte(XIRCREG2_MSR) | 0x08); PutByte(XIRCREG2_MSR, GetByte(XIRCREG2_MSR) | 0x08);
msleep(20); msleep(20);
} else { } else {
printk(KERN_INFO "%s: MII detected; using 10mbs\n", netdev_info(dev, "MII detected; using 10mbs\n");
dev->name);
SelectPage(0x42); SelectPage(0x42);
if (dev->if_port == 2) /* enable 10Base2 */ if (dev->if_port == 2) /* enable 10Base2 */
PutByte(XIRCREG42_SWC1, 0xC0); PutByte(XIRCREG42_SWC1, 0xC0);
...@@ -1677,8 +1668,8 @@ do_reset(struct net_device *dev, int full) ...@@ -1677,8 +1668,8 @@ do_reset(struct net_device *dev, int full)
} }
if (full) if (full)
printk(KERN_INFO "%s: media %s, silicon revision %d\n", netdev_info(dev, "media %s, silicon revision %d\n",
dev->name, if_names[dev->if_port], local->silicon); if_names[dev->if_port], local->silicon);
/* We should switch back to page 0 to avoid a bug in revision 0 /* We should switch back to page 0 to avoid a bug in revision 0
* where regs with offset below 8 can't be read after an access * where regs with offset below 8 can't be read after an access
* to the MAC registers */ * to the MAC registers */
...@@ -1720,8 +1711,7 @@ init_mii(struct net_device *dev) ...@@ -1720,8 +1711,7 @@ init_mii(struct net_device *dev)
control = mii_rd(ioaddr, 0, 0); control = mii_rd(ioaddr, 0, 0);
if (control & 0x0400) { if (control & 0x0400) {
printk(KERN_NOTICE "%s can't take PHY out of isolation mode\n", netdev_notice(dev, "can't take PHY out of isolation mode\n");
dev->name);
local->probe_port = 0; local->probe_port = 0;
return 0; return 0;
} }
...@@ -1739,8 +1729,7 @@ init_mii(struct net_device *dev) ...@@ -1739,8 +1729,7 @@ init_mii(struct net_device *dev)
} }
if (!(status & 0x0020)) { if (!(status & 0x0020)) {
printk(KERN_INFO "%s: autonegotiation failed;" netdev_info(dev, "autonegotiation failed; using 10mbs\n");
" using 10mbs\n", dev->name);
if (!local->new_mii) { if (!local->new_mii) {
control = 0x0000; control = 0x0000;
mii_wr(ioaddr, 0, 0, control, 16); mii_wr(ioaddr, 0, 0, control, 16);
...@@ -1750,8 +1739,7 @@ init_mii(struct net_device *dev) ...@@ -1750,8 +1739,7 @@ init_mii(struct net_device *dev)
} }
} else { } else {
linkpartner = mii_rd(ioaddr, 0, 5); linkpartner = mii_rd(ioaddr, 0, 5);
printk(KERN_INFO "%s: MII link partner: %04x\n", netdev_info(dev, "MII link partner: %04x\n", linkpartner);
dev->name, linkpartner);
if (linkpartner & 0x0080) { if (linkpartner & 0x0080) {
dev->if_port = 4; dev->if_port = 4;
} else } else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment