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/mcffec.c |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/drivers/net/mcffec.c b/drivers/net/mcffec.c
index 0aeb24e..31c8dcd 100644
--- a/drivers/net/mcffec.c
+++ b/drivers/net/mcffec.c
@@ -551,6 +551,13 @@ void fec_halt(struct eth_device *dev)
        memset(info->txbuf, 0, DBUF_LENGTH);
 }
 
+static struct eth_ops fec_ops = {
+       .init = fec_init,
+       .halt = fec_halt,
+       .send = fec_send,
+       .recv = fec_recv
+};
+
 int mcffec_initialize(bd_t * bis)
 {
        struct eth_device *dev;
@@ -572,10 +579,7 @@ int mcffec_initialize(bd_t * bis)
                sprintf(dev->name, "FEC%d", fec_info[i].index);
 
                dev->priv = &fec_info[i];
-               dev->eo->init = fec_init;
-               dev->eo->halt = fec_halt;
-               dev->eo->send = fec_send;
-               dev->eo->recv = fec_recv;
+               dev->eo = &fec_ops;
 
                /* setup Receive and Transmit buffer descriptor */
 #ifdef CONFIG_SYS_FEC_BUF_USE_SRAM
-- 
1.7.2.5

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

Reply via email to