[U-Boot] [PATCH v2 62/67] net: cpsw: Pull out init of struct eth_ops

Tomas Hlavacek tmshlvck at gmail.com
Wed Nov 21 14:23:53 CET 2012


Add static struct eth_ops and set ops function pointers statically.
Remove setting eth_ops members dynamically.

This is a step toward converting the driver for DM.

Signed-off-by: Tomas Hlavacek <tmshlvck at gmail.com>
---
 drivers/net/cpsw.c |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/drivers/net/cpsw.c b/drivers/net/cpsw.c
index c120d4e..1e2ca40 100644
--- a/drivers/net/cpsw.c
+++ b/drivers/net/cpsw.c
@@ -931,6 +931,13 @@ static int cpsw_phy_init(struct eth_device *dev, struct cpsw_slave *slave)
 	return 1;
 }
 
+static struct eth_ops cpsw_ops = {
+	.init = cpsw_init,
+	.halt = cpsw_halt,
+	.send = cpsw_send,
+	.recv = cpsw_recv
+};
+
 int cpsw_register(struct cpsw_platform_data *data)
 {
 	struct cpsw_priv	*priv;
@@ -974,10 +981,7 @@ int cpsw_register(struct cpsw_platform_data *data)
 
 	strcpy(dev->name, "cpsw");
 	dev->iobase	= 0;
-	dev->eo->init	= cpsw_init;
-	dev->eo->halt	= cpsw_halt;
-	dev->eo->send	= cpsw_send;
-	dev->eo->recv	= cpsw_recv;
+	dev->eo	= &cpsw_ops;
 	dev->priv	= priv;
 
 	eth_register(dev);
-- 
1.7.2.5



More information about the U-Boot mailing list