Commit abcb2ace authored by Guchun Chen's avatar Guchun Chen Committed by Alex Deucher
Browse files

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: default avatarLijo Lazar <lijo.lazar@amd.com>
Signed-off-by: default avatarGuchun Chen <guchun.chen@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent f6015da7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2569,7 +2569,7 @@ static int amdgpu_pmops_runtime_suspend(struct device *dev)
		amdgpu_device_baco_enter(drm_dev);
	}

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

	return 0;
}
+1 −1
Original line number Diff line number Diff line
@@ -858,7 +858,7 @@ static int psp_tmr_unload(struct psp_context *psp)
	struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);

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

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