Skip to content

Commit

Permalink
[PATCH] sk98lin: avoid message confusion with skge
Browse files Browse the repository at this point in the history
Avoid possible confusion between skge and sk98lin driver by
tagging messages properly.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
shemminger@osdl.org authored and Jeff Garzik committed Dec 1, 2005
1 parent 4f4c815 commit be0df20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/sk98lin/skge.c
Original file line number Diff line number Diff line change
Expand Up @@ -4853,7 +4853,7 @@ static int __devinit skge_probe_one(struct pci_dev *pdev,
dev->irq = pdev->irq;
error = SkGeInitPCI(pAC);
if (error) {
printk("SKGE: PCI setup failed: %i\n", error);
printk(KERN_ERR "sk98lin: PCI setup failed: %i\n", error);
goto out_free_netdev;
}

Expand Down Expand Up @@ -4889,7 +4889,7 @@ static int __devinit skge_probe_one(struct pci_dev *pdev,

/* Register net device */
if (register_netdev(dev)) {
printk(KERN_ERR "SKGE: Could not register device.\n");
printk(KERN_ERR "sk98lin: Could not register device.\n");
goto out_free_resources;
}

Expand Down Expand Up @@ -4955,7 +4955,7 @@ static int __devinit skge_probe_one(struct pci_dev *pdev,
#endif

if (register_netdev(dev)) {
printk(KERN_ERR "SKGE: Could not register device.\n");
printk(KERN_ERR "sk98lin: Could not register device for seconf port.\n");
free_netdev(dev);
pAC->dev[1] = pAC->dev[0];
} else {
Expand Down

0 comments on commit be0df20

Please sign in to comment.