From patchwork Wed Nov 21 13:23:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot,v2,34/67] net: npe: Pull out init of struct eth_ops Date: Wed, 21 Nov 2012 03:23:25 -0000 From: Tomas Hlavacek X-Patchwork-Id: 200714 Message-Id: <1353504238-11277-35-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/npe/npe.c | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/net/npe/npe.c b/drivers/net/npe/npe.c index d376c21..adff561 100644 --- a/drivers/net/npe/npe.c +++ b/drivers/net/npe/npe.c @@ -576,6 +576,13 @@ static int npe_rx(struct eth_device *dev) return 0; } +static struct eth_ops npe_ops = { + .init = npe_init, + .halt = npe_halt, + .send = npe_send, + .recv = npe_rx +}; + int npe_initialize(bd_t * bis) { static int virgin = 0; @@ -625,10 +632,7 @@ int npe_initialize(bd_t * bis) sprintf(dev->name, "NPE%d", eth_num); dev->priv = (void *)p_npe; - dev->eo->init = npe_init; - dev->eo->halt = npe_halt; - dev->eo->send = npe_send; - dev->eo->recv = npe_rx; + dev->eo = &npe_ops; p_npe->print_speed = 1;