Skip to content

Commit 19e66d5

Browse files
Lijo Lazaralexdeucher
authored andcommitted
drm/amd/pm: Fix xgmi link control on aldebaran
Fix the message argument. 0: Allow power down 1: Disallow power down Signed-off-by: Lijo Lazar <[email protected]> Reviewed-by: Hawking Zhang <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent bf67014 commit 19e66d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/amd/pm/swsmu/smu13/aldebaran_ppt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1621,7 +1621,7 @@ static int aldebaran_allow_xgmi_power_down(struct smu_context *smu, bool en)
16211621
{
16221622
return smu_cmn_send_smc_msg_with_param(smu,
16231623
SMU_MSG_GmiPwrDnControl,
1624-
en ? 1 : 0,
1624+
en ? 0 : 1,
16251625
NULL);
16261626
}
16271627

0 commit comments

Comments
 (0)