Comments
Patch
@@ -931,6 +931,13 @@ static int cpsw_phy_init(struct eth_device *dev, struct cpsw_slave *slave)
return 1;
}
+static struct eth_ops cpsw_ops = {
+ .init = cpsw_init,
+ .halt = cpsw_halt,
+ .send = cpsw_send,
+ .recv = cpsw_recv
+};
+
int cpsw_register(struct cpsw_platform_data *data)
{
struct cpsw_priv *priv;
@@ -974,10 +981,7 @@ int cpsw_register(struct cpsw_platform_data *data)
strcpy(dev->name, "cpsw");
dev->iobase = 0;
- dev->eo->init = cpsw_init;
- dev->eo->halt = cpsw_halt;
- dev->eo->send = cpsw_send;
- dev->eo->recv = cpsw_recv;
+ dev->eo = &cpsw_ops;
dev->priv = priv;
eth_register(dev);
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@gmail.com> --- drivers/net/cpsw.c | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-)