diff options
author | Tom Rini <trini@konsulko.com> | 2025-06-14 09:10:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-14 09:10:48 -0600 |
commit | 03817a2a8046ea89dac2be72ce0c16a9faa5570b (patch) | |
tree | b4d6f39f9b0ded094c7f54aeb135a9eae6e19492 /drivers/ddr/altera | |
parent | 2556caa89caba6c3d4df7910828119bc65beb1f0 (diff) | |
parent | 0230ad1c30a405c807dad5f78c95c57704234ffd (diff) |
Merge patch series "Hex value prefix case cleanup"
E Shattow <e@freeshell.de> 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/20250606224558.1117422-1-e@freeshell.de
Diffstat (limited to 'drivers/ddr/altera')
-rw-r--r-- | drivers/ddr/altera/iossm_mailbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ddr/altera/iossm_mailbox.c b/drivers/ddr/altera/iossm_mailbox.c index fc09dde3f9e..21f94959a04 100644 --- a/drivers/ddr/altera/iossm_mailbox.c +++ b/drivers/ddr/altera/iossm_mailbox.c @@ -41,7 +41,7 @@ /* Offset of Mailbox Read-only Registers */ #define IOSSM_MAILBOX_HEADER_OFFSET 0x0 -#define IOSSM_MEM_INTF_INFO_0_OFFSET 0X200 +#define IOSSM_MEM_INTF_INFO_0_OFFSET 0x200 #define IOSSM_MEM_INTF_INFO_1_OFFSET 0x280 #define IOSSM_MEM_TECHNOLOGY_INTF0_OFFSET 0x210 #define IOSSM_MEM_TECHNOLOGY_INTF1_OFFSET 0x290 |