Re: [net-next PATCH v6 2/6] net: phy: introduce device_mdiobus_register()

2020-07-12 Thread Calvin Johnson
On Sat, Jul 11, 2020 at 02:36:20PM -0700, Florian Fainelli wrote: > > > On 7/10/2020 11:55 PM, Calvin Johnson wrote: > > Introduce device_mdiobus_register() to register mdiobus > > in cases of either DT or ACPI. > > > > Signed-off-by: Calvin Johnson > > > > --- > > > > Changes in v6: > > - ch

Re: [net-next PATCH v6 2/6] net: phy: introduce device_mdiobus_register()

2020-07-11 Thread Florian Fainelli
On 7/10/2020 11:55 PM, Calvin Johnson wrote: > Introduce device_mdiobus_register() to register mdiobus > in cases of either DT or ACPI. > > Signed-off-by: Calvin Johnson > > --- > > Changes in v6: > - change device_mdiobus_register() parameter position > - improve documentation > > Changes

[net-next PATCH v6 2/6] net: phy: introduce device_mdiobus_register()

2020-07-10 Thread Calvin Johnson
Introduce device_mdiobus_register() to register mdiobus in cases of either DT or ACPI. Signed-off-by: Calvin Johnson --- Changes in v6: - change device_mdiobus_register() parameter position - improve documentation Changes in v5: - add description - clean up if else Changes in v4: None Changes