All of lore.kernel.org
 help / color / mirror / Atom feed
From: E Shattow <e@freeshell.de>
To: U-Boot Mailing List <u-boot@lists.denx.de>,
	Tom Rini <trini@konsulko.com>
Cc: E Shattow <e@freeshell.de>
Subject: [PATCH v1 0/7] Hex value prefix case cleanup
Date: Fri,  6 Jun 2025 15:44:55 -0700	[thread overview]
Message-ID: <20250606224558.1117422-1-e@freeshell.de> (raw)

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


             reply	other threads:[~2025-06-06 22:46 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-06 22:44 E Shattow [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250606224558.1117422-1-e@freeshell.de \
    --to=e@freeshell.de \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.