From: Sukrut Bellary Date: Fri, 30 May 2025 21:22:31 +0000 (-0700) Subject: pwm: ti: am33xx: Fix build warnings in dev_dbg() X-Git-Tag: v2025.10-rc1~118^2~21^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0bcbf782f5909b36d0af705e95c5c8ad4092bfc;p=thirdparty%2Fu-boot.git pwm: ti: am33xx: Fix build warnings in dev_dbg() If CONFIG_PWM_TI_EHRPWM is enabled, it throws the build warning in dev_dbg() due to incorrect format specifier as, "warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘fdt_addr_t’ {aka ‘unsigned int’}". Fix this with the correct format specifier. Signed-off-by: Sukrut Bellary --- diff --git a/drivers/pwm/pwm-ti-ehrpwm.c b/drivers/pwm/pwm-ti-ehrpwm.c index 563109ef0f8..135ea3b4321 100644 --- a/drivers/pwm/pwm-ti-ehrpwm.c +++ b/drivers/pwm/pwm-ti-ehrpwm.c @@ -399,7 +399,7 @@ static int ti_ehrpwm_of_to_plat(struct udevice *dev) return -EINVAL; } - dev_dbg(dev, "regs=0x%08lx\n", priv->regs); + dev_dbg(dev, "regs=0x%08x\n", priv->regs); return 0; }