Lines Matching refs:retval

68 	int retval;  in b1pci_probe()  local
73 retval = -ENOMEM; in b1pci_probe()
86 retval = -EBUSY; in b1pci_probe()
90 retval = b1_detect(card->port, card->cardtype); in b1pci_probe()
91 if (retval) { in b1pci_probe()
93 card->port, retval); in b1pci_probe()
94 retval = -ENODEV; in b1pci_probe()
100 retval = request_irq(card->irq, b1_interrupt, IRQF_SHARED, card->name, card); in b1pci_probe()
101 if (retval) { in b1pci_probe()
103 retval = -EBUSY; in b1pci_probe()
119 retval = attach_capi_ctr(&cinfo->capi_ctrl); in b1pci_probe()
120 if (retval) { in b1pci_probe()
143 return retval; in b1pci_probe()
187 int retval; in b1pciv4_probe() local
192 retval = -ENOMEM; in b1pciv4_probe()
199 retval = -ENOMEM; in b1pciv4_probe()
213 retval = -EBUSY; in b1pciv4_probe()
221 retval = -ENOMEM; in b1pciv4_probe()
227 retval = b1pciv4_detect(card); in b1pciv4_probe()
228 if (retval) { in b1pciv4_probe()
230 card->port, retval); in b1pciv4_probe()
231 retval = -ENODEV; in b1pciv4_probe()
237 retval = request_irq(card->irq, b1dma_interrupt, IRQF_SHARED, card->name, card); in b1pciv4_probe()
238 if (retval) { in b1pciv4_probe()
241 retval = -EBUSY; in b1pciv4_probe()
257 retval = attach_capi_ctr(&cinfo->capi_ctrl); in b1pciv4_probe()
258 if (retval) { in b1pciv4_probe()
281 return retval; in b1pciv4_probe()
306 int retval; in b1pci_pci_probe() local
324 retval = b1pciv4_probe(&param, pdev); in b1pci_pci_probe()
326 retval = b1pci_probe(&param, pdev); in b1pci_pci_probe()
328 if (retval != 0) { in b1pci_pci_probe()
338 retval = b1pci_probe(&param, pdev); in b1pci_pci_probe()
339 if (retval != 0) { in b1pci_pci_probe()
344 return retval; in b1pci_pci_probe()