Skip to content

Commit

Permalink
drm: bridge: ldb: add missing \n in dev_warn() string
Browse files Browse the repository at this point in the history
dev_warn() and similar require a training \n.

Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Reviewed-by: Robert Foss <rfoss@kernel.org>
Signed-off-by: Robert Foss <rfoss@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230405081058.2347130-1-luca.ceresoli@bootlin.com
  • Loading branch information
Luca Ceresoli authored and Robert Foss committed Apr 5, 2023
1 parent ce7498a commit 8cc0b60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/bridge/fsl-ldb.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ static void fsl_ldb_atomic_enable(struct drm_bridge *bridge,

configured_link_freq = clk_get_rate(fsl_ldb->clk);
if (configured_link_freq != requested_link_freq)
dev_warn(fsl_ldb->dev, "Configured LDB clock (%lu Hz) does not match requested LVDS clock: %lu Hz",
dev_warn(fsl_ldb->dev, "Configured LDB clock (%lu Hz) does not match requested LVDS clock: %lu Hz\n",
configured_link_freq,
requested_link_freq);

Expand Down

0 comments on commit 8cc0b60

Please sign in to comment.