Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/bridge: it66121: Drop ftrace like dev_dbg() prints

Drop the ftrace like dev_dbg() that checkpatch --strict complains about:

WARNING: Unnecessary ftrace-like logging - prefer using ftrace
+ dev_dbg(dev, "%s\n", __func__);

WARNING: Unnecessary ftrace-like logging - prefer using ftrace
+ dev_dbg(dev, "%s\n", __func__);

WARNING: Unnecessary ftrace-like logging - prefer using ftrace
+ dev_dbg(dev, "%s\n", __func__);

Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Andrew Davis <afd@ti.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20251029150636.3118628-3-nm@ti.com

authored by

Nishanth Menon and committed by
Neil Armstrong
1ba36afa e902d2c3

-6
-6
drivers/gpu/drm/bridge/ite-it66121.c
··· 1384 1384 int ret; 1385 1385 struct it66121_ctx *ctx = dev_get_drvdata(dev); 1386 1386 1387 - dev_dbg(dev, "%s\n", __func__); 1388 - 1389 1387 mutex_lock(&ctx->lock); 1390 1388 ret = it661221_audio_output_enable(ctx, true); 1391 1389 if (ret) ··· 1398 1400 { 1399 1401 int ret; 1400 1402 struct it66121_ctx *ctx = dev_get_drvdata(dev); 1401 - 1402 - dev_dbg(dev, "%s\n", __func__); 1403 1403 1404 1404 mutex_lock(&ctx->lock); 1405 1405 ret = it661221_audio_output_enable(ctx, false); ··· 1474 1478 .max_i2s_channels = 8, 1475 1479 .no_capture_mute = 1, 1476 1480 }; 1477 - 1478 - dev_dbg(dev, "%s\n", __func__); 1479 1481 1480 1482 if (!of_property_present(dev->of_node, "#sound-dai-cells")) { 1481 1483 dev_info(dev, "No \"#sound-dai-cells\", no audio\n");