From: Ed Maste Date: Fri, 21 Nov 2025 15:12:36 +0000 (+0000) Subject: drm/amd/amdgpu: Add missing newline in DRM_DEBUG_DRIVER message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecd3fdfbeefdf3ecd075349bf7535d950efd56b3;p=thirdparty%2Fkernel%2Flinux.git drm/amd/amdgpu: Add missing newline in DRM_DEBUG_DRIVER message This error message was emitted without a newline during bring-up on FreeBSD. Presumably the error doesn't occur on Linux so was not noticed before. Signed-off-by: Ed Maste Reviewed-by: Mario Limonciello Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c index d31460a9e9582..14de162b46997 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c @@ -1108,7 +1108,7 @@ static int amdgpu_acpi_enumerate_xcc(void) * one is not found, no need to check the rest. */ if (!acpi_dev) { - DRM_DEBUG_DRIVER("No matching acpi device found for %s", + DRM_DEBUG_DRIVER("No matching acpi device found for %s\n", hid); break; }