[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1404970545-26508-5-git-send-email-varkabhadram@gmail.com>
Date: Thu, 10 Jul 2014 11:05:42 +0530
From: varkabhadram@...il.com
To: netdev@...r.kernel.org
Cc: mugunthanvnm@...com, linux@...nbow-software.org, balbi@...com,
george.cherian@...com, davem@...emloft.net,
Varka Bhadram <varkab@...c.in>
Subject: [PATCH net v2 4/7] net: cpmac: fix cpmac driver structure
From: Varka Bhadram <varkab@...c.in>
This patch changes to style of declarattion which follows every driver
Signed-off-by: Varka Bhadram <varkab@...c.in>
---
drivers/net/ethernet/ti/cpmac.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/ti/cpmac.c b/drivers/net/ethernet/ti/cpmac.c
index 9faf669..1520c19 100644
--- a/drivers/net/ethernet/ti/cpmac.c
+++ b/drivers/net/ethernet/ti/cpmac.c
@@ -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,
};
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists