mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
USB: ohci-s3c2410: use __devinit and __devexit macros for probe and remove
The __devinit and __devexit macros were added to probe and remove functions. The macros move the probe and remove functions to the devinit and devexit sections. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
fd4477b09e
commit
e7f84331c2
@ -473,12 +473,12 @@ static const struct hc_driver ohci_s3c2410_hc_driver = {
|
|||||||
|
|
||||||
/* device driver */
|
/* device driver */
|
||||||
|
|
||||||
static int ohci_hcd_s3c2410_drv_probe(struct platform_device *pdev)
|
static int __devinit ohci_hcd_s3c2410_drv_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
return usb_hcd_s3c2410_probe(&ohci_s3c2410_hc_driver, pdev);
|
return usb_hcd_s3c2410_probe(&ohci_s3c2410_hc_driver, pdev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ohci_hcd_s3c2410_drv_remove(struct platform_device *pdev)
|
static int __devexit ohci_hcd_s3c2410_drv_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct usb_hcd *hcd = platform_get_drvdata(pdev);
|
struct usb_hcd *hcd = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
@ -488,7 +488,7 @@ static int ohci_hcd_s3c2410_drv_remove(struct platform_device *pdev)
|
|||||||
|
|
||||||
static struct platform_driver ohci_hcd_s3c2410_driver = {
|
static struct platform_driver ohci_hcd_s3c2410_driver = {
|
||||||
.probe = ohci_hcd_s3c2410_drv_probe,
|
.probe = ohci_hcd_s3c2410_drv_probe,
|
||||||
.remove = ohci_hcd_s3c2410_drv_remove,
|
.remove = __devexit_p(ohci_hcd_s3c2410_drv_remove),
|
||||||
.shutdown = usb_hcd_platform_shutdown,
|
.shutdown = usb_hcd_platform_shutdown,
|
||||||
/*.suspend = ohci_hcd_s3c2410_drv_suspend, */
|
/*.suspend = ohci_hcd_s3c2410_drv_suspend, */
|
||||||
/*.resume = ohci_hcd_s3c2410_drv_resume, */
|
/*.resume = ohci_hcd_s3c2410_drv_resume, */
|
||||||
|
Loading…
Reference in New Issue
Block a user