[U-Boot] [RFC PATCH 30/50] net: mpc5xxx_fec: Pull out init of struct eth_ops
Tomas Hlavacek
tmshlvck at gmail.com
Fri Nov 2 18:18:22 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/mpc5xxx_fec.c | 11 +++++++----
1 file 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.10.4
More information about the U-Boot
mailing list