drm/amd/pm: Fix xgmi link control on aldebaran

[ Upstream commit 19e66d512e ]

Fix the message argument.
	0: Allow power down
	1: Disallow power down

Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Lijo Lazar 2021-12-15 23:37:03 +08:00 коммит произвёл Greg Kroah-Hartman
Родитель 31d95ff41c
Коммит 12a4c1092a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1619,7 +1619,7 @@ static int aldebaran_allow_xgmi_power_down(struct smu_context *smu, bool en)
{
return smu_cmn_send_smc_msg_with_param(smu,
SMU_MSG_GmiPwrDnControl,
en ? 1 : 0,
en ? 0 : 1,
NULL);
}