Re: [PATCH net-next v3 02/10] net: mvpp2: phylink support
From: Andrew Lunn <andrew@lunn.ch>
Date: 2018-08-31 14:19:23
Also in:
linux-arm-kernel, lkml
From: Andrew Lunn <andrew@lunn.ch>
Date: 2018-08-31 14:19:23
Also in:
linux-arm-kernel, lkml
@@ -4691,6 +4685,9 @@ static int mvpp2_port_probe(struct platform_device *pdev, if (fwnode_property_read_bool(port_fwnode, "marvell,loopback")) port->flags |= MVPP2_F_LOOPBACK; + if (fwnode_property_present(port_fwnode, "fixed-link")) + port->flags |= MVPP2_F_FIXED_LINK; +
Hi Antoine There is no need to go look in device tree. When phylink calls mac_config() it passes mode == MLO_AN_FIXED, when it is using a fixed link. Andrew