.clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
};
-static int s5p_ehci_probe(struct platform_device *pdev)
+static int __devinit s5p_ehci_probe(struct platform_device *pdev)
{
struct s5p_ehci_platdata *pdata;
struct s5p_ehci_hcd *s5p_ehci;
return err;
}
-static int s5p_ehci_remove(struct platform_device *pdev)
+static int __devexit s5p_ehci_remove(struct platform_device *pdev)
{
struct s5p_ehci_platdata *pdata = pdev->dev.platform_data;
struct s5p_ehci_hcd *s5p_ehci = platform_get_drvdata(pdev);
static struct platform_driver s5p_ehci_driver = {
.probe = s5p_ehci_probe,
- .remove = s5p_ehci_remove,
+ .remove = __devexit_p(s5p_ehci_remove),
.shutdown = s5p_ehci_shutdown,
.driver = {
.name = "s5p-ehci",