]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/amd/display: Remove unnecessary whitespace
authorMario Limonciello <mario.limonciello@amd.com>
Fri, 27 Jun 2025 21:55:03 +0000 (16:55 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 28 Jul 2025 20:40:30 +0000 (16:40 -0400)
[Why]
Whitespace before a new line is unnecessary.

[How]
Remove whitespace.

Reviewed-by: Sun peng (Leo) Li <sunpeng.li@amd.com>
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Ivan Lipski <ivan.lipski@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

index 85f4a1bf5e6f60371842255f2424c599cd2a51c5..2fde2065c5b663cb8d911469bfd0811a29d0ceb4 100644 (file)
@@ -6389,13 +6389,15 @@ static void fill_stream_properties_from_drm_display_mode(
                                                               (struct drm_connector *)connector,
                                                               mode_in);
                if (err < 0)
-                       drm_warn_once(connector->dev, "Failed to setup avi infoframe on connector %s: %zd \n", connector->name, err);
+                       drm_warn_once(connector->dev, "Failed to setup avi infoframe on connector %s: %zd\n",
+                                     connector->name, err);
                timing_out->vic = avi_frame.video_code;
                err = drm_hdmi_vendor_infoframe_from_display_mode(&hv_frame,
                                                                  (struct drm_connector *)connector,
                                                                  mode_in);
                if (err < 0)
-                       drm_warn_once(connector->dev, "Failed to setup vendor infoframe on connector %s: %zd \n", connector->name, err);
+                       drm_warn_once(connector->dev, "Failed to setup vendor infoframe on connector %s: %zd\n",
+                                     connector->name, err);
                timing_out->hdmi_vic = hv_frame.vic;
        }