g_NCR5380: remove misleading pnp error message
Remove misleading error message that appears after pnp card has been detected correctly. Signed-off-by: Ondrej Zary <linux@rainbow-software.org> Cc: James Bottomley <James.Bottomley@HansenPartnership.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
eb6edad3ec
commit
c94babbaf8
1 changed files with 1 additions and 3 deletions
|
@ -322,10 +322,8 @@ int __init generic_NCR5380_detect(struct scsi_host_template * tpnt)
|
|||
while ((dev = pnp_find_dev(NULL, ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e), dev))) {
|
||||
if (count >= NO_OVERRIDES)
|
||||
break;
|
||||
if (pnp_device_attach(dev) < 0) {
|
||||
printk(KERN_ERR "dtc436e probe: attach failed\n");
|
||||
if (pnp_device_attach(dev) < 0)
|
||||
continue;
|
||||
}
|
||||
if (pnp_activate_dev(dev) < 0) {
|
||||
printk(KERN_ERR "dtc436e probe: activate failed\n");
|
||||
pnp_device_detach(dev);
|
||||
|
|
Loading…
Reference in a new issue