Skip to content

Commit abcb2ac

Browse files
Guchun Chenalexdeucher
authored andcommitted
drm/amdgpu: use dev_dbg to print messages in runtime cycle
Runtime PM can happen pretty frequently, as these printings may be annoyed, switch to dev_dbg. Suggested-by: Lijo Lazar <[email protected]> Signed-off-by: Guchun Chen <[email protected]> Reviewed-by: Alex Deucher <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent f6015da commit abcb2ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2569,7 +2569,7 @@ static int amdgpu_pmops_runtime_suspend(struct device *dev)
25692569
amdgpu_device_baco_enter(drm_dev);
25702570
}
25712571

2572-
dev_info(&pdev->dev, "asic/device is runtime suspended\n");
2572+
dev_dbg(&pdev->dev, "asic/device is runtime suspended\n");
25732573

25742574
return 0;
25752575
}

drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ static int psp_tmr_unload(struct psp_context *psp)
858858
struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
859859

860860
psp_prep_tmr_unload_cmd_buf(psp, cmd);
861-
dev_info(psp->adev->dev, "free PSP TMR buffer\n");
861+
dev_dbg(psp->adev->dev, "free PSP TMR buffer\n");
862862

863863
ret = psp_cmd_submit_buf(psp, NULL, cmd,
864864
psp->fence_buf_mc_addr);

0 commit comments

Comments
 (0)