net: cpmac: fix cpmac driver structure
authorVarka Bhadram <varkab@cdac.in>
Thu, 10 Jul 2014 05:35:42 +0000 (11:05 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Jul 2014 07:40:37 +0000 (00:40 -0700)
This patch changes to style of declarattion which follows every driver

Signed-off-by: Varka Bhadram <varkab@cdac.in>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpmac.c

index 9faf669..1520c19 100644 (file)
@@ -1187,9 +1187,11 @@ static int cpmac_remove(struct platform_device *pdev)
 }
 
 static struct platform_driver cpmac_driver = {
-       .driver.name = "cpmac",
-       .driver.owner = THIS_MODULE,
-       .probe = cpmac_probe,
+       .driver = {
+               .name   = "cpmac",
+               .owner  = THIS_MODULE,
+       },
+       .probe  = cpmac_probe,
        .remove = cpmac_remove,
 };