Commit dee497df authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman

USB: at91_udc, fix more modpost bogosity (rename driver struct)

Rename the driver struct used with at91_udc to prevent yet another
bogus warning from "modpost".
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent a967e127
...@@ -1835,7 +1835,7 @@ static int at91udc_resume(struct platform_device *pdev) ...@@ -1835,7 +1835,7 @@ static int at91udc_resume(struct platform_device *pdev)
#define at91udc_resume NULL #define at91udc_resume NULL
#endif #endif
static struct platform_driver at91_udc = { static struct platform_driver at91_udc_driver = {
.remove = __exit_p(at91udc_remove), .remove = __exit_p(at91udc_remove),
.shutdown = at91udc_shutdown, .shutdown = at91udc_shutdown,
.suspend = at91udc_suspend, .suspend = at91udc_suspend,
...@@ -1848,13 +1848,13 @@ static struct platform_driver at91_udc = { ...@@ -1848,13 +1848,13 @@ static struct platform_driver at91_udc = {
static int __init udc_init_module(void) static int __init udc_init_module(void)
{ {
return platform_driver_probe(&at91_udc, at91udc_probe); return platform_driver_probe(&at91_udc_driver, at91udc_probe);
} }
module_init(udc_init_module); module_init(udc_init_module);
static void __exit udc_exit_module(void) static void __exit udc_exit_module(void)
{ {
platform_driver_unregister(&at91_udc); platform_driver_unregister(&at91_udc_driver);
} }
module_exit(udc_exit_module); module_exit(udc_exit_module);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment