Lines Matching refs:result
35 int result; in ps3_ohci_hc_start() local
45 result = ohci_run(ohci); in ps3_ohci_hc_start()
47 if (result < 0) { in ps3_ohci_hc_start()
53 return result; in ps3_ohci_hc_start()
81 int result; in ps3_ohci_probe() local
87 result = -ENODEV; in ps3_ohci_probe()
91 result = ps3_open_hv_device(dev); in ps3_ohci_probe()
93 if (result) { in ps3_ohci_probe()
95 __func__, __LINE__, ps3_result(result)); in ps3_ohci_probe()
96 result = -EPERM; in ps3_ohci_probe()
100 result = ps3_dma_region_create(dev->d_region); in ps3_ohci_probe()
102 if (result) { in ps3_ohci_probe()
104 "(%d)\n", __func__, __LINE__, result); in ps3_ohci_probe()
109 result = ps3_mmio_region_create(dev->m_region); in ps3_ohci_probe()
111 if (result) { in ps3_ohci_probe()
114 result = -EPERM; in ps3_ohci_probe()
121 result = ps3_io_irq_setup(PS3_BINDING_CPU_ANY, dev->interrupt_id, &virq); in ps3_ohci_probe()
123 if (result) { in ps3_ohci_probe()
126 result = -EPERM; in ps3_ohci_probe()
137 result = -ENOMEM; in ps3_ohci_probe()
153 result = -EPERM; in ps3_ohci_probe()
168 result = usb_add_hcd(hcd, virq, 0); in ps3_ohci_probe()
170 if (result) { in ps3_ohci_probe()
172 __func__, __LINE__, result); in ps3_ohci_probe()
177 return result; in ps3_ohci_probe()
194 return result; in ps3_ohci_probe()