Re: [PATCH net-next] net: phy: Add helpers to determine if PHY driver is generic

2019-01-17 Thread David Miller
From: Florian Fainelli Date: Tue, 15 Jan 2019 15:09:35 -0800 > We are already checking in phy_detach() that the PHY driver is of > generic kind (1G or 10G) and we are going to make use of that in the SFP > layer as well for 1000BaseT SFP modules, so expose helper functions to > return that

Re: [PATCH net-next] net: phy: Add helpers to determine if PHY driver is generic

2019-01-16 Thread Andrew Lunn
On Tue, Jan 15, 2019 at 03:09:35PM -0800, Florian Fainelli wrote: > We are already checking in phy_detach() that the PHY driver is of > generic kind (1G or 10G) and we are going to make use of that in the SFP > layer as well for 1000BaseT SFP modules, so expose helper functions to > return that

[PATCH net-next] net: phy: Add helpers to determine if PHY driver is generic

2019-01-15 Thread Florian Fainelli
We are already checking in phy_detach() that the PHY driver is of generic kind (1G or 10G) and we are going to make use of that in the SFP layer as well for 1000BaseT SFP modules, so expose helper functions to return that information. Signed-off-by: Florian Fainelli ---