diff options
| author | Mario Limonciello (AMD) <superm1@kernel.org> | 2025-12-15 04:12:21 +0300 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2026-01-06 00:59:54 +0300 |
| commit | e6c7ebeaba4080562e71a59a788ac90b41e09240 (patch) | |
| tree | feadca35a336ebcf7cac45a077713aa49d6cadaa | |
| parent | 5847cf1aed00704e8202ffebea86b4f6bd618403 (diff) | |
| download | linux-e6c7ebeaba4080562e71a59a788ac90b41e09240.tar.xz | |
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) <superm1@kernel.org>
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/atom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/atom.c b/drivers/gpu/drm/amd/amdgpu/atom.c index 7a063e44d429..371ee82a8912 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) |
