Re: [PATCH v2 1/4] net: phy: Port set/clear bits from Linux

2024-12-05 Thread Paul Barker
On 25/11/2024 16:42, Quentin Schulz wrote: > Hi Paul, > > On 11/20/24 10:49 AM, Paul Barker wrote: >> To simply porting phy drivers from Linux to U-Boot, define >> phy_set_bits() and phy_clear_bits() functions with a similar API to >> those used in Linux. >> >> The U-Boot versions of these functio

Re: [PATCH v2 1/4] net: phy: Port set/clear bits from Linux

2024-11-25 Thread Quentin Schulz
Hi Paul, On 11/20/24 10:49 AM, Paul Barker wrote: To simply porting phy drivers from Linux to U-Boot, define phy_set_bits() and phy_clear_bits() functions with a similar API to those used in Linux. The U-Boot versions of these functions include the `devad` argument which is not present in the L

[PATCH v2 1/4] net: phy: Port set/clear bits from Linux

2024-11-20 Thread Paul Barker
To simply porting phy drivers from Linux to U-Boot, define phy_set_bits() and phy_clear_bits() functions with a similar API to those used in Linux. The U-Boot versions of these functions include the `devad` argument which is not present in the Linux versions, to keep them aligned with the other ph