On Thu, 18 Jun 2020 15:08:36 +0300 Ioana Ciornei wrote: > +#if IS_ENABLED(CONFIG_MDIO_LYNX_PCS) > +struct mdio_lynx_pcs *mdio_lynx_pcs_create(struct mdio_device *mdio_dev); > + > +void mdio_lynx_pcs_free(struct mdio_lynx_pcs *pcs); > +#else > +static struct mdio_lynx_pcs *mdio_lynx_pcs_create(struct mdio_device > *mdio_dev) > +{ > + return NULL; > +} > + > +static void mdio_lynx_pcs_free(struct mdio_lynx_pcs *pcs) > +{ > +} > +#endif
Do you want these to be static inline?