From patchwork Fri Nov 2 17:18:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot,RFC,30/50] net: mpc5xxx_fec: Pull out init of struct eth_ops Date: Fri, 02 Nov 2012 07:18:22 -0000 From: Tomas Hlavacek X-Patchwork-Id: 196677 Message-Id: <1351876722-5183-31-git-send-email-tmshlvck@gmail.com> To: u-boot@lists.denx.de Cc: marex@denx.de 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 --- 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);