On Tue, 18 Aug 2020 13:11:27 +0200 Andre Edich wrote: > +static inline int lan87xx_config_aneg(struct phy_device *phydev)
> +static inline int lan87xx_config_aneg_ext(struct phy_device *phydev) Please don't use static inline in C files, the compiler will know what to inline so it's unnecessary, and it hides dead code.