From: Julien Stephan Date: Thu, 15 Jan 2026 14:30:43 +0000 (+0100) Subject: power: regulator: common: remove unnecessary debug trace X-Git-Tag: v2026.04-rc1~10^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dbec4f77c907c20c1ae707bfdd8ac356b0e0986;p=thirdparty%2Fu-boot.git power: regulator: common: remove unnecessary debug trace Drop the ftrace like debug() that checkpatch --strict complains about: WARNING: Unnecessary ftrace-like logging - prefer using ftrace Reviewed-by: Peng Fan Reviewed-by: Tanmay Kathpalia Reviewed-by: Neil Armstrong Signed-off-by: Julien Stephan Signed-off-by: Peng Fan --- diff --git a/drivers/power/regulator/regulator_common.c b/drivers/power/regulator/regulator_common.c index 685d8735fa5..ce3d80670de 100644 --- a/drivers/power/regulator/regulator_common.c +++ b/drivers/power/regulator/regulator_common.c @@ -98,7 +98,6 @@ int regulator_common_set_enable(const struct udevice *dev, if (enable && plat->startup_delay_us) udelay(plat->startup_delay_us); - debug("%s: done\n", __func__); if (!enable && plat->off_on_delay_us) udelay(plat->off_on_delay_us);