net/mac8390: Fix log messages
authorFinn Thain <fthain@telegraphics.com.au>
Mon, 19 Feb 2018 02:39:17 +0000 (21:39 -0500)
committerDavid S. Miller <davem@davemloft.net>
Wed, 21 Feb 2018 19:14:05 +0000 (14:14 -0500)
Use dev_foo() to log the slot number instead of the unexpanded "eth%d"
format string.
Disambiguate the two identical "Card type %s is unsupported" messages.

Tested-by: Stan Johnson <userm57@yahoo.com>
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/8390/mac8390.c

index 8042dd7..b6d735b 100644 (file)
@@ -308,14 +308,14 @@ static bool mac8390_rsrc_init(struct net_device *dev,
         */
 
        if (nubus_get_func_dir(fres, &dir) == -1) {
-               pr_err("%s: Unable to get Nubus functional directory for slot %X!\n",
-                      dev->name, board->slot);
+               dev_err(&board->dev,
+                       "Unable to get Nubus functional directory\n");
                return false;
        }
 
        /* Get the MAC address */
        if (nubus_find_rsrc(&dir, NUBUS_RESID_MAC_ADDRESS, &ent) == -1) {
-               pr_info("%s: Couldn't get MAC address!\n", dev->name);
+               dev_info(&board->dev, "MAC address resource not found\n");
                return false;
        }
 
@@ -325,8 +325,8 @@ static bool mac8390_rsrc_init(struct net_device *dev,
                nubus_rewinddir(&dir);
                if (nubus_find_rsrc(&dir, NUBUS_RESID_MINOR_BASEOS,
                                    &ent) == -1) {
-                       pr_err("%s: Memory offset resource for slot %X not found!\n",
-                              dev->name, board->slot);
+                       dev_err(&board->dev,
+                               "Memory offset resource not found\n");
                        return false;
                }
                nubus_get_rsrc_mem(&offset, &ent, 4);
@@ -336,8 +336,8 @@ static bool mac8390_rsrc_init(struct net_device *dev,
                nubus_rewinddir(&dir);
                if (nubus_find_rsrc(&dir, NUBUS_RESID_MINOR_LENGTH,
                                    &ent) == -1) {
-                       pr_info("%s: Memory length resource for slot %X not found, probing\n",
-                               dev->name, board->slot);
+                       dev_info(&board->dev,
+                                "Memory length resource not found, probing\n");
                        offset = mac8390_memsize(dev->mem_start);
                } else {
                        nubus_get_rsrc_mem(&offset, &ent, 4);
@@ -380,8 +380,8 @@ static bool mac8390_rsrc_init(struct net_device *dev,
                        break;
 
                default:
-                       pr_err("Card type %s is unsupported, sorry\n",
-                              board->name);
+                       dev_err(&board->dev,
+                               "No known base address for card type\n");
                        return false;
                }
        }
@@ -533,7 +533,8 @@ static int mac8390_initdev(struct net_device *dev, struct nubus_board *board,
        case MAC8390_APPLE:
                switch (mac8390_testio(dev->mem_start)) {
                case ACCESS_UNKNOWN:
-                       pr_err("Don't know how to access card memory!\n");
+                       dev_err(&board->dev,
+                               "Don't know how to access card memory\n");
                        return -ENODEV;
 
                case ACCESS_16:
@@ -599,21 +600,18 @@ static int mac8390_initdev(struct net_device *dev, struct nubus_board *board,
                break;
 
        default:
-               pr_err("Card type %s is unsupported, sorry\n",
-                      board->name);
+               dev_err(&board->dev, "Unsupported card type\n");
                return -ENODEV;
        }
 
        __NS8390_init(dev, 0);
 
        /* Good, done, now spit out some messages */
-       pr_info("%s: %s in slot %X (type %s)\n",
-               dev->name, board->name, board->slot,
-               cardname[type]);
-       pr_info("MAC %pM IRQ %d, %d KB shared memory at %#lx, %d-bit access.\n",
-               dev->dev_addr, dev->irq,
-               (unsigned int)(dev->mem_end - dev->mem_start) >> 10,
-               dev->mem_start, access_bitmode ? 32 : 16);
+       dev_info(&board->dev, "%s (type %s)\n", board->name, cardname[type]);
+       dev_info(&board->dev, "MAC %pM, IRQ %d, %d KB shared memory at %#lx, %d-bit access.\n",
+                dev->dev_addr, dev->irq,
+                (unsigned int)(dev->mem_end - dev->mem_start) >> 10,
+                dev->mem_start, access_bitmode ? 32 : 16);
        return 0;
 }