[PATCH] sk98lin: avoid message confusion with skge
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>
This commit is contained in:
parent
4f4c815042
commit
be0df20cb5
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue