mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-18 06:33:43 -04:00
drm/amd: Drop amdgpu prefix from message prints
Hardcoding the prefix isn't necessary when using drm_* or dev_* message prints. 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>
This commit is contained in:
committed by
Alex Deucher
parent
d4b8d132ce
commit
5fd4fef3f8
@@ -2098,7 +2098,7 @@ static int amdgpu_dm_init(struct amdgpu_device *adev)
|
||||
drm_err(adev_to_drm(adev),
|
||||
"failed to initialize freesync_module.\n");
|
||||
} else
|
||||
drm_dbg_driver(adev_to_drm(adev), "amdgpu: freesync_module init done %p.\n",
|
||||
drm_dbg_driver(adev_to_drm(adev), "freesync_module init done %p.\n",
|
||||
adev->dm.freesync_module);
|
||||
|
||||
amdgpu_dm_init_color_mod();
|
||||
@@ -2120,7 +2120,9 @@ static int amdgpu_dm_init(struct amdgpu_device *adev)
|
||||
if (!adev->dm.hdcp_workqueue)
|
||||
drm_err(adev_to_drm(adev), "failed to initialize hdcp_workqueue.\n");
|
||||
else
|
||||
drm_dbg_driver(adev_to_drm(adev), "amdgpu: hdcp_workqueue init done %p.\n", adev->dm.hdcp_workqueue);
|
||||
drm_dbg_driver(adev_to_drm(adev),
|
||||
"hdcp_workqueue init done %p.\n",
|
||||
adev->dm.hdcp_workqueue);
|
||||
|
||||
dc_init_callbacks(adev->dm.dc, &init_params);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user