[U-Boot] [RFC PATCH 50/50] net: sh_eth: Pull out init of struct eth_ops

Tomas Hlavacek tmshlvck at gmail.com
Fri Nov 2 18:18:42 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/sh_eth.c |   12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c
index 1f8d0c1..e801bcb 100644
--- a/drivers/net/sh_eth.c
+++ b/drivers/net/sh_eth.c
@@ -502,6 +502,13 @@ void sh_eth_halt(struct eth_device *dev)
 	sh_eth_stop(eth);
 }
 
+static struct eth_ops sh_eth_ops = {
+	.init = sh_eth_init,
+	.halt = sh_eth_halt,
+	.send = sh_eth_send,
+	.recv = sh_eth_recv
+};
+
 int sh_eth_initialize(bd_t *bd)
 {
     int ret = 0;
@@ -529,10 +536,7 @@ int sh_eth_initialize(bd_t *bd)
 
     dev->priv = (void *)eth;
     dev->iobase = 0;
-	dev->eo->init = sh_eth_init;
-	dev->eo->halt = sh_eth_halt;
-	dev->eo->send = sh_eth_send;
-	dev->eo->recv = sh_eth_recv;
+	dev->eo = &sh_eth_ops;
     eth->port_info[eth->port].dev = dev;
 
 	sprintf(dev->name, SHETHER_NAME);
-- 
1.7.10.4



More information about the U-Boot mailing list