Move the platform_driver closer to its functions.
No functional changes.

Signed-off-by: Felipe Balbi <[email protected]>
---
 drivers/usb/host/ehci-omap.c |   23 ++++++++++++-----------
 1 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c
index 1b387cc..e66f5f9 100644
--- a/drivers/usb/host/ehci-omap.c
+++ b/drivers/usb/host/ehci-omap.c
@@ -511,6 +511,18 @@ static int ehci_hcd_omap_drv_remove(struct platform_device 
*pdev)
        return 0;
 }
 
+static struct platform_driver ehci_hcd_omap_driver = {
+       .probe                  = ehci_hcd_omap_drv_probe,
+       .remove                 = ehci_hcd_omap_drv_remove,
+       .shutdown               = usb_hcd_platform_shutdown,
+       /*.suspend              = ehci_hcd_omap_drv_suspend, */
+       /*.resume               = ehci_hcd_omap_drv_resume, */
+       .driver = {
+               .name           = "ehci-omap",
+               .bus            = &platform_bus_type
+       }
+};
+
 static const struct hc_driver ehci_omap_hc_driver = {
        .description = hcd_name,
        .product_desc           = "OMAP-EHCI Host Controller",
@@ -554,14 +566,3 @@ static const struct hc_driver ehci_omap_hc_driver = {
 
 MODULE_ALIAS("platform:omap-ehci");
 
-static struct platform_driver ehci_hcd_omap_driver = {
-       .probe                  = ehci_hcd_omap_drv_probe,
-       .remove                 = ehci_hcd_omap_drv_remove,
-       .shutdown               = usb_hcd_platform_shutdown,
-       /*.suspend              = ehci_hcd_omap_drv_suspend, */
-       /*.resume               = ehci_hcd_omap_drv_resume, */
-       .driver = {
-               .name           = "ehci-omap",
-               .bus            = &platform_bus_type
-       }
-};
-- 
1.6.1.3

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to