static int ohci_hcd_ppc_soc_drv_probe(struct platform_device *pdev) { int ret; if (usb_disabled()) return -ENODEV; ret = usb_hcd_ppc_soc_probe(&ohci_ppc_soc_hc_driver, pdev); return ret; }
static int ohci_hcd_ppc_soc_drv_probe(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct usb_hcd *hcd = NULL; int ret; if (usb_disabled()) return -ENODEV; ret = usb_hcd_ppc_soc_probe(&ohci_ppc_soc_hc_driver, &hcd, pdev); if (ret == 0) dev_set_drvdata(dev, hcd); return ret; }