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 /arch/arm/mach-omap2/lowlevel_init.S | |
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 'arch/arm/mach-omap2/lowlevel_init.S')
-rw-r--r-- | arch/arm/mach-omap2/lowlevel_init.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/lowlevel_init.S b/arch/arm/mach-omap2/lowlevel_init.S index 1a55295f9de..e977805bd03 100644 --- a/arch/arm/mach-omap2/lowlevel_init.S +++ b/arch/arm/mach-omap2/lowlevel_init.S @@ -39,7 +39,7 @@ restore_from_hyp: adr r0, save_sp ldr sp, [r0] MRC p15, 4, R0, c1, c0, 0 - ldr r1, =0X1004 @Set cache enable bits for hypervisor mode + ldr r1, =0x1004 @Set cache enable bits for hypervisor mode orr r0, r0, r1 MCR p15, 4, R0, c1, c0, 0 b switch_to_hypervisor_ret |