Commit fefaf9a7 authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds

[PATCH] Char: stallion, prints cleanup

Too many information is printed out (they may be easily obtained through
sysfs), wipe them out in probe function.  Convert rest of them to dev_
variants.
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b1b84fe0
...@@ -2421,9 +2421,6 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev, ...@@ -2421,9 +2421,6 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev,
struct stlbrd *brdp; struct stlbrd *brdp;
unsigned int brdtype = ent->driver_data; unsigned int brdtype = ent->driver_data;
pr_debug("stl_initpcibrd(brdtype=%d,busnr=%x,devnr=%x)\n", brdtype,
pdev->bus->number, pdev->devfn);
if ((pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) if ((pdev->class >> 8) == PCI_CLASS_STORAGE_IDE)
return -ENODEV; return -ENODEV;
...@@ -2435,20 +2432,12 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev, ...@@ -2435,20 +2432,12 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev,
if ((brdp = stl_allocbrd()) == NULL) if ((brdp = stl_allocbrd()) == NULL)
return(-ENOMEM); return(-ENOMEM);
if ((brdp->brdnr = stl_getbrdnr()) < 0) { if ((brdp->brdnr = stl_getbrdnr()) < 0) {
printk("STALLION: too many boards found, " dev_err(&pdev->dev, "too many boards found, "
"maximum supported %d\n", STL_MAXBRDS); "maximum supported %d\n", STL_MAXBRDS);
return(0); return(0);
} }
brdp->brdtype = brdtype; brdp->brdtype = brdtype;
/*
* Different Stallion boards use the BAR registers in different ways,
* so set up io addresses based on board type.
*/
pr_debug("%s(%d): BAR[]=%Lx,%Lx,%Lx,%Lx IRQ=%x\n", __FILE__, __LINE__,
pci_resource_start(pdev, 0), pci_resource_start(pdev, 1),
pci_resource_start(pdev, 2), pci_resource_start(pdev, 3), pdev->irq);
/* /*
* We have all resources from the board, so let's setup the actual * We have all resources from the board, so let's setup the actual
* board structure now. * board structure now.
...@@ -2467,7 +2456,7 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev, ...@@ -2467,7 +2456,7 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev,
brdp->ioaddr2 = pci_resource_start(pdev, 1); brdp->ioaddr2 = pci_resource_start(pdev, 1);
break; break;
default: default:
printk("STALLION: unknown PCI board type=%d\n", brdtype); dev_err(&pdev->dev, "unknown PCI board type=%u\n", brdtype);
break; break;
} }
......
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