diff options
| author | Tom Rini <[email protected]> | 2025-06-14 09:10:48 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-06-14 09:10:48 -0600 |
| commit | 03817a2a8046ea89dac2be72ce0c16a9faa5570b (patch) | |
| tree | b4d6f39f9b0ded094c7f54aeb135a9eae6e19492 /drivers/net/phy | |
| parent | 2556caa89caba6c3d4df7910828119bc65beb1f0 (diff) | |
| parent | 0230ad1c30a405c807dad5f78c95c57704234ffd (diff) | |
Merge patch series "Hex value prefix case cleanup"
E Shattow <[email protected]> says:
Make consistent use of lowercase hexadecimal prefix '0x' throughout U-Boot.
There are a few remaining uses of uppercase 'X' to denote hexadecimal prefix
or placeholder in documentation and error messages.
External devicetree-rebasing dts/upstream and the generated code of
xilinx/zynq are ignored for the series.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'drivers/net/phy')
| -rw-r--r-- | drivers/net/phy/ca_phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/ca_phy.c b/drivers/net/phy/ca_phy.c index 5b2c67d2fda..72d370274a1 100644 --- a/drivers/net/phy/ca_phy.c +++ b/drivers/net/phy/ca_phy.c @@ -73,7 +73,7 @@ static void __external_phy_init(struct phy_device *phydev, int reset_phy) val &= ~(1 << 2); phy_write(phydev, MDIO_DEVAD_NONE, 27, val); - /* REG31 write 0X0000, back to page0 */ + /* REG31 write 0x0000, back to page0 */ phy_write(phydev, MDIO_DEVAD_NONE, 31, 0x0000); } |
