Lines Matching refs:result
23 int result; in ps3_ohci_hc_start() local
33 result = ohci_run(ohci); in ps3_ohci_hc_start()
35 if (result < 0) { in ps3_ohci_hc_start()
41 return result; in ps3_ohci_hc_start()
69 int result; in ps3_ohci_probe() local
75 result = -ENODEV; in ps3_ohci_probe()
79 result = ps3_open_hv_device(dev); in ps3_ohci_probe()
81 if (result) { in ps3_ohci_probe()
83 __func__, __LINE__, ps3_result(result)); in ps3_ohci_probe()
84 result = -EPERM; in ps3_ohci_probe()
88 result = ps3_dma_region_create(dev->d_region); in ps3_ohci_probe()
90 if (result) { in ps3_ohci_probe()
92 "(%d)\n", __func__, __LINE__, result); in ps3_ohci_probe()
97 result = ps3_mmio_region_create(dev->m_region); in ps3_ohci_probe()
99 if (result) { in ps3_ohci_probe()
102 result = -EPERM; in ps3_ohci_probe()
109 result = ps3_io_irq_setup(PS3_BINDING_CPU_ANY, dev->interrupt_id, &virq); in ps3_ohci_probe()
111 if (result) { in ps3_ohci_probe()
114 result = -EPERM; in ps3_ohci_probe()
127 result = -ENOMEM; in ps3_ohci_probe()
143 result = -EPERM; in ps3_ohci_probe()
158 result = usb_add_hcd(hcd, virq, 0); in ps3_ohci_probe()
160 if (result) { in ps3_ohci_probe()
162 __func__, __LINE__, result); in ps3_ohci_probe()
167 return result; in ps3_ohci_probe()
184 return result; in ps3_ohci_probe()