On Fri, Oct 23, 2020 at 12:56:23PM +0200, Oleksij Rempel wrote: > Signed-off-by: Oleksij Rempel <o.rempel@xxxxxxxxxxxxxx> > --- > drivers/net/phy/phy.c | 2 ++ > include/linux/phy.h | 3 +++ > 2 files changed, 5 insertions(+) > > diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c > index 35525a671400..4fb355df3e61 100644 > --- a/drivers/net/phy/phy.c > +++ b/drivers/net/phy/phy.c > @@ -324,6 +324,8 @@ void phy_ethtool_ksettings_get(struct phy_device *phydev, > cmd->base.master_slave_state = phydev->master_slave_state; > if (phydev->interface == PHY_INTERFACE_MODE_MOCA) > cmd->base.port = PORT_BNC; > + else if (phydev->interface == PHY_INTERFACE_MODE_CAN) > + cmd->base.port = PORT_OTHER; > else > cmd->base.port = PORT_MII; There is nothing stopping you from adding CAN specific PORT_ types. Andrew