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

diff --git a/drivers/net/mpc5xxx_fec.c b/drivers/net/mpc5xxx_fec.c
index 73503da..50f8100 100644
--- a/drivers/net/mpc5xxx_fec.c
+++ b/drivers/net/mpc5xxx_fec.c
@@ -879,6 +879,12 @@ static int mpc5xxx_fec_recv(struct eth_device *dev)
        return len;
 }
 
+static struct eth_ops mpc5xxx_fec_ops = {
+       .init = mpc5xxx_fec_init,
+       .halt = mpc5xxx_fec_halt,
+       .send = mpc5xxx_fec_send,
+       .recv = mpc5xxx_fec_recv
+};
 
 /********************************************************************/
 int mpc5xxx_fec_initialize(bd_t * bis)
@@ -915,10 +921,7 @@ int mpc5xxx_fec_initialize(bd_t * bis)
 
        dev->priv = (void *)fec;
        dev->iobase = MPC5XXX_FEC;
-       dev->eo->init = mpc5xxx_fec_init;
-       dev->eo->halt = mpc5xxx_fec_halt;
-       dev->eo->send = mpc5xxx_fec_send;
-       dev->eo->recv = mpc5xxx_fec_recv;
+       dev->eo = &mpc5xxx_fec_ops;
 
        sprintf(dev->name, "FEC");
        eth_register(dev);
-- 
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