All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/7] Hex value prefix case cleanup
@ 2025-06-06 22:44 E Shattow
  2025-06-06 22:44 ` [PATCH v1 1/7] configs: use lowercase hex prefix style E Shattow
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: E Shattow @ 2025-06-06 22:44 UTC (permalink / raw)
  To: U-Boot Mailing List, Tom Rini; +Cc: E Shattow

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.

E Shattow (7):
  configs: use lowercase hex prefix style
  board: use lowercase hex prefix style
  drivers: use lowercase hex prefix style
  tools: use lowercase hex prefix style
  lib: use lowercase hex prefix style
  arch: use lowercase hex prefix style
  include: use lowercase hex prefix style

 arch/arm/dts/fsl-imx8qxp-ai_ml.dts            | 16 +++---
 arch/arm/dts/hi3660.dtsi                      |  2 +-
 arch/arm/dts/imx7-colibri.dtsi                |  2 +-
 .../asm/arch-fsl-layerscape/immap_lsch3.h     |  2 +-
 arch/arm/include/asm/arch-mx6/mx6sl_pins.h    |  8 +--
 arch/arm/include/asm/arch-rockchip/cru_px30.h |  6 +--
 .../arm/include/asm/arch-rockchip/f_rockusb.h |  2 +-
 .../include/asm/arch-rockchip/sdram_px30.h    |  2 +-
 .../include/asm/arch-rockchip/sdram_rk3328.h  |  2 +-
 .../include/asm/arch-rockchip/sdram_rv1126.h  |  2 +-
 arch/arm/include/asm/iproc-common/sysmap.h    | 20 ++++----
 arch/arm/mach-at91/include/mach/at91_wdt.h    |  2 +-
 arch/arm/mach-exynos/include/mach/dsim.h      |  2 +-
 arch/arm/mach-imx/iomux-v3.c                  |  2 +-
 .../mach-keystone/include/mach/hardware-k2g.h |  4 +-
 arch/arm/mach-kirkwood/include/mach/mpp.h     |  2 +-
 arch/arm/mach-omap2/lowlevel_init.S           |  2 +-
 arch/arm/mach-sc5xx/init/dmcinit.c            |  2 +-
 .../include/mach/clock_manager_s10.h          |  6 +--
 arch/arm/mach-uniphier/bcu/bcu-ld4.c          |  2 +-
 arch/arm/mach-zynqmp/include/mach/hardware.h  |  2 +-
 arch/mips/mach-jz47xx/jz4780/pll.c            |  2 +-
 arch/powerpc/include/asm/immap_85xx.h         |  6 +--
 arch/powerpc/include/asm/processor.h          |  4 +-
 board/freescale/common/qixis.h                |  4 +-
 board/gateworks/gw_ventana/gw_ventana_spl.c   | 28 +++++------
 board/kontron/sl-mx6ul/spl.c                  |  2 +-
 configs/am62x_evm_r5_ethboot_defconfig        |  2 +-
 configs/starfive_visionfive2_defconfig        |  2 +-
 drivers/ata/dwc_ahsata_priv.h                 |  4 +-
 drivers/clk/renesas/r8a774a1-cpg-mssr.c       |  2 +-
 drivers/clk/stm32/clk-stm32mp1.c              |  2 +-
 drivers/ddr/altera/iossm_mailbox.c            |  2 +-
 drivers/mmc/sdhci-cadence6.c                  |  2 +-
 drivers/mmc/zynq_sdhci.c                      |  2 +-
 drivers/mtd/nand/raw/lpc32xx_nand_mlc.c       |  4 +-
 drivers/net/fsl-mc/mc.c                       |  2 +-
 drivers/net/phy/ca_phy.c                      |  2 +-
 drivers/phy/rockchip/phy-rockchip-typec.c     |  2 +-
 drivers/power/regulator/act8846.c             |  4 +-
 drivers/ram/k3-ddrss/k3-ddrss.c               |  2 +-
 drivers/ram/octeon/octeon3_lmc.c              |  2 +-
 drivers/sound/max98088.h                      | 50 +++++++++----------
 drivers/sound/max98095.h                      |  2 +-
 drivers/video/bridge/dp501.c                  |  2 +-
 drivers/video/hx8238d.c                       |  2 +-
 drivers/video/zynqmp/zynqmp_dpsub.h           |  2 +-
 include/fsl_esdhc.h                           |  2 +-
 include/fsl_esdhc_imx.h                       |  2 +-
 include/mc13892.h                             |  2 +-
 .../external/mbedtls/library/ecp_curves_new.c | 46 ++++++++---------
 tools/Kconfig                                 |  2 +-
 52 files changed, 142 insertions(+), 142 deletions(-)


base-commit: b3f69c14187d413610abbc2b82d1a3752cb342c1
-- 
2.49.0


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2025-06-16  8:25 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-06 22:44 [PATCH v1 0/7] Hex value prefix case cleanup E Shattow
2025-06-06 22:44 ` [PATCH v1 1/7] configs: use lowercase hex prefix style E Shattow
2025-06-06 22:44 ` [PATCH v1 2/7] board: " E Shattow
2025-06-06 22:44 ` [PATCH v1 3/7] drivers: " E Shattow
2025-06-16  8:20   ` Patrick DELAUNAY
2025-06-06 22:44 ` [PATCH v1 4/7] tools: " E Shattow
2025-06-06 22:45 ` [PATCH v1 5/7] lib: " E Shattow
2025-06-06 22:45 ` [PATCH v1 6/7] arch: " E Shattow
2025-06-06 22:45 ` [PATCH v1 7/7] include: " E Shattow
2025-06-14 17:44 ` [PATCH v1 0/7] Hex value prefix case cleanup Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.