Commit f04329ac authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] pnp_activate_dev API changes.

Someone nuked the 2nd arg in 2.5.62, but didn't fix up
all the callers. Lazy.
parent 22c5563a
......@@ -283,7 +283,7 @@ setup_asuscom(struct IsdnCard *card)
printk(KERN_ERR "AsusPnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "AsusPnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -632,7 +632,7 @@ setup_avm_pcipnp(struct IsdnCard *card)
printk(KERN_ERR "FritzPnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pnp_avm, NULL) < 0) {
if (pnp_activate_dev(pnp_avm) < 0) {
printk(KERN_ERR "FritzPnP: activate failed\n");
pnp_device_detach(pnp_avm);
return 0;
......
......@@ -600,7 +600,7 @@ setup_diva(struct IsdnCard *card)
printk(KERN_ERR "Diva PnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "Diva PnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -864,7 +864,7 @@ setup_elsa(struct IsdnCard *card)
printk(KERN_ERR "Elsa PnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
pnp_device_detach(pd);
printk(KERN_ERR "Elsa PnP: activate failed\n");
return 0;
......
......@@ -1200,7 +1200,7 @@ setup_hfcsx(struct IsdnCard *card)
printk(KERN_ERR "HFC PnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "HFC PnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -193,7 +193,7 @@ setup_hfcs(struct IsdnCard *card)
printk(KERN_ERR "HFC PnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "HFC PnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -223,7 +223,7 @@ setup_isurf(struct IsdnCard *card)
printk(KERN_ERR "ISurfPnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "ISurfPnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -208,7 +208,7 @@ setup_ix1micro(struct IsdnCard *card)
printk(KERN_ERR "ITK PnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "ITK PnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -232,7 +232,7 @@ setup_niccy(struct IsdnCard *card)
printk(KERN_ERR "NiccyPnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "NiccyPnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -524,7 +524,7 @@ setup_sedlbauer(struct IsdnCard *card)
printk(KERN_ERR "Sedlbauer PnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pd, NULL) < 0) {
if (pnp_activate_dev(pd) < 0) {
printk(KERN_ERR "Sedlbauer PnP: activate failed\n");
pnp_device_detach(pd);
return 0;
......
......@@ -227,7 +227,7 @@ setup_teles3(struct IsdnCard *card)
printk(KERN_ERR "Teles PnP: attach failed\n");
return 0;
}
if (pnp_activate_dev(pnp_dev, NULL) < 0) {
if (pnp_activate_dev(pnp_dev) < 0) {
printk(KERN_ERR "Teles PnP: activate failed\n");
pnp_device_detach(pnp_dev);
return 0;
......
......@@ -262,7 +262,7 @@ static int isapnp_fmi_probe(void)
return -ENODEV;
if (pnp_device_attach(dev) < 0)
return -EAGAIN;
if (pnp_activate_dev(dev, NULL) < 0) {
if (pnp_activate_dev(dev) < 0) {
printk ("radio-sf16fmi: PnP configure failed (out of resources?)\n");
pnp_device_detach(dev);
return -ENOMEM;
......
......@@ -385,7 +385,7 @@ static int __init el3_probe(int card_idx)
idev))) {
if (pnp_device_attach(idev) < 0)
continue;
if (pnp_activate_dev(idev, NULL) < 0) {
if (pnp_activate_dev(idev) < 0) {
__again:
pnp_device_detach(idev);
continue;
......
......@@ -469,7 +469,7 @@ static int corkscrew_scan(struct net_device *dev)
if (pnp_device_attach(idev) < 0)
continue;
if (pnp_activate_dev(idev, NULL) < 0) {
if (pnp_activate_dev(idev) < 0) {
printk("pnp activate failed (out of resources?)\n");
pnp_device_detach(idev);
return -ENOMEM;
......
......@@ -205,7 +205,7 @@ static int __init ne_probe_isapnp(struct net_device *dev)
/* Avoid already found cards from previous calls */
if (pnp_device_attach(idev) < 0)
continue;
if (pnp_activate_dev(idev, NULL) < 0) {
if (pnp_activate_dev(idev) < 0) {
pnp_device_detach(idev);
continue;
}
......
......@@ -170,7 +170,7 @@ sb1000_probe(struct net_device *dev)
if (pnp_device_attach(idev) < 0)
continue;
if (pnp_activate_dev(idev, NULL) < 0) {
if (pnp_activate_dev(idev) < 0) {
__again:
pnp_device_detach(idev);
continue;
......
......@@ -293,7 +293,7 @@ static int __init ultra_probe_isapnp(struct net_device *dev)
/* Avoid already found cards from previous calls */
if (pnp_device_attach(idev) < 0)
continue;
if (pnp_activate_dev(idev, NULL) < 0) {
if (pnp_activate_dev(idev) < 0) {
__again:
pnp_device_detach(idev);
continue;
......
......@@ -846,7 +846,7 @@ static void __init isa_probe(void)
printk("PNP ");
if (pnp_activate_dev(dev, NULL) < 0) {
if (pnp_activate_dev(dev) < 0) {
printk("activate failed\n");
pnp_device_detach(dev);
break;
......
......@@ -1131,7 +1131,7 @@ int aha152x_detect(Scsi_Host_Template * tpnt)
while ( setup_count<ARRAY_SIZE(setup) && (dev=pnp_find_dev(NULL, ISAPNP_VENDOR('A','D','P'), ISAPNP_FUNCTION(0x1505), dev)) ) {
if (pnp_device_attach(dev) < 0)
continue;
if (pnp_activate_dev(dev, NULL) < 0) {
if (pnp_activate_dev(dev) < 0) {
pnp_device_detach(dev);
continue;
}
......
......@@ -1161,7 +1161,7 @@ static int __init aha1542_detect(Scsi_Host_Template * tpnt)
if(pnp_device_attach(pdev)<0)
continue;
if(pnp_activate_dev(pdev, NULL)<0) {
if(pnp_activate_dev(pdev)<0) {
pnp_device_detach(pdev);
continue;
}
......
......@@ -323,7 +323,7 @@ int __init generic_NCR5380_detect(Scsi_Host_Template * tpnt)
printk(KERN_ERR "dtc436e probe: attach failed\n");
continue;
}
if (pnp_activate_dev(dev, NULL) < 0) {
if (pnp_activate_dev(dev) < 0) {
printk(KERN_ERR "dtc436e probe: activate failed\n");
pnp_device_detach(dev);
continue;
......
......@@ -679,7 +679,7 @@ int __init sym53c416_detect(Scsi_Host_Template *tpnt)
printk(KERN_WARNING "sym53c416: unable to attach PnP device.\n");
continue;
}
if(pnp_activate_dev(idev, NULL)<0)
if(pnp_activate_dev(idev)<0)
{
printk(KERN_WARNING "sym53c416: unable to activate PnP device.\n");
pnp_device_detach(idev);
......
......@@ -7717,7 +7717,7 @@ int __init ixj_probe_isapnp(int *cnt)
printk("pnp attach failed %d \n", result);
break;
}
if (pnp_activate_dev(dev, NULL) < 0) {
if (pnp_activate_dev(dev) < 0) {
printk("pnp activate failed (out of resources?)\n");
pnp_device_detach(dev);
return -ENOMEM;
......
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