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 <tmshl...@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

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to