aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
diff options
context:
space:
mode:
authorpding <Pixel.Ding@amd.com>2017-10-25 21:30:38 -0400
committerAlex Deucher <alexander.deucher@amd.com>2017-12-04 16:33:12 -0500
commit9953b72f9c9cb7733334753788faab33ccc4dc0a (patch)
tree4df2e7dd91612afdd7ebcf761242a6d0518fa116 /drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
parentbc1b1bf6e347af908c9a994803e18e2e22cf84b3 (diff)
drm/amdgpu: change redundant init logs to debug level
When this VF stays in exclusive mode for long, other VFs will be impacted. The redundant messages causes exclusive mode timeout when they're redirected. That is a normal use case for cloud service to redirect guest log to virtual serial port. Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: pding <Pixel.Ding@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_device.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_device.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index d5d450e380bd..212138476130 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -1029,7 +1029,7 @@ static int amdgpu_atombios_init(struct amdgpu_device *adev)
1029 atom_card_info->ioreg_read = cail_ioreg_read; 1029 atom_card_info->ioreg_read = cail_ioreg_read;
1030 atom_card_info->ioreg_write = cail_ioreg_write; 1030 atom_card_info->ioreg_write = cail_ioreg_write;
1031 } else { 1031 } else {
1032 DRM_INFO("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n"); 1032 DRM_DEBUG("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n");
1033 atom_card_info->ioreg_read = cail_reg_read; 1033 atom_card_info->ioreg_read = cail_reg_read;
1034 atom_card_info->ioreg_write = cail_reg_write; 1034 atom_card_info->ioreg_write = cail_reg_write;
1035 } 1035 }
@@ -2267,8 +2267,6 @@ int amdgpu_device_init(struct amdgpu_device *adev,
2267 dev_err(adev->dev, "gpu post error!\n"); 2267 dev_err(adev->dev, "gpu post error!\n");
2268 goto failed; 2268 goto failed;
2269 } 2269 }
2270 } else {
2271 DRM_INFO("GPU post is not needed\n");
2272 } 2270 }
2273 2271
2274 if (adev->is_atom_fw) { 2272 if (adev->is_atom_fw) {