On Mon, Oct 22, 2018 at 11:32:47AM +0100, Jose Abreu wrote: > We already have this callback implemented. Use it in driver structure. > > Signed-off-by: Jose Abreu <joab...@synopsys.com> > Cc: Andrew Lunn <and...@lunn.ch> > Cc: Florian Fainelli <f.faine...@gmail.com> > Cc: "David S. Miller" <da...@davemloft.net> > Cc: Joao Pinto <joao.pi...@synopsys.com> > --- > drivers/net/phy/phy-c45.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/net/phy/phy-c45.c b/drivers/net/phy/phy-c45.c > index e1225545362d..c0135217b81f 100644 > --- a/drivers/net/phy/phy-c45.c > +++ b/drivers/net/phy/phy-c45.c > @@ -330,6 +330,7 @@ struct phy_driver genphy_10g_driver = { > .soft_reset = gen10g_no_soft_reset, > .config_init = gen10g_config_init, > .features = 0, > + .aneg_done = genphy_c45_aneg_done, > .config_aneg = gen10g_config_aneg, > .read_status = gen10g_read_status, > .suspend = gen10g_suspend,
We should probably do something about the naming. I need to look at the history to understand why we have gen10g_ and genphy_c45_. Andrew