From: Mario Limonciello (AMD) Date: Mon, 15 Dec 2025 01:12:21 +0000 (-0600) Subject: drm/amd: Add correct prefix for VBIOS message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6c7ebeaba4080562e71a59a788ac90b41e09240;p=thirdparty%2Fkernel%2Flinux.git drm/amd: Add correct prefix for VBIOS message It's not obvious which GPU the ATOM BIOS message goes with. Use drm_info() to show the correct one. Signed-off-by: Mario Limonciello (AMD) Reviewed-by: Aurabindo Pillai Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/atom.c b/drivers/gpu/drm/amd/amdgpu/atom.c index 7a063e44d4298..371ee82a89126 100644 --- a/drivers/gpu/drm/amd/amdgpu/atom.c +++ b/drivers/gpu/drm/amd/amdgpu/atom.c @@ -1463,7 +1463,7 @@ static void atom_get_vbios_pn(struct atom_context *ctx) ctx->vbios_pn[count] = 0; } - pr_info("ATOM BIOS: %s\n", ctx->vbios_pn); + drm_info(ctx->card->dev, "ATOM BIOS: %s\n", ctx->vbios_pn); } static void atom_get_vbios_version(struct atom_context *ctx)