}
/**
- * fusbh200_hcd_fusbh200_probe - initialize faraday FUSBH200 HCDs
+ * fusbh200_hcd_probe - initialize faraday FUSBH200 HCDs
*
* Allocates basic resources for this USB host controller, and
* then invokes the start() method for the HCD associated with it
* through the hotplug entry's driver_data.
*/
-static int fusbh200_hcd_fusbh200_probe(struct platform_device *pdev)
+static int fusbh200_hcd_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct usb_hcd *hcd;
}
/**
- * fusbh200_hcd_fusbh200_remove - shutdown processing for EHCI HCDs
+ * fusbh200_hcd_remove - shutdown processing for EHCI HCDs
* @dev: USB Host Controller being removed
*
* Reverses the effect of fotg2xx_usb_hcd_probe(), first invoking
* the HCD's stop() method. It is always called from a thread
* context, normally "rmmod", "apmd", or something similar.
*/
-static int fusbh200_hcd_fusbh200_remove(struct platform_device *pdev)
+static int fusbh200_hcd_remove(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct usb_hcd *hcd = dev_get_drvdata(dev);
.driver = {
.name = "fusbh200",
},
- .probe = fusbh200_hcd_fusbh200_probe,
- .remove = fusbh200_hcd_fusbh200_remove,
+ .probe = fusbh200_hcd_probe,
+ .remove = fusbh200_hcd_remove,
};
static int __init fusbh200_hcd_init(void)