Skip to content

Commit

Permalink
drm/amd: smu7: downgrade voltage error to info
Browse files Browse the repository at this point in the history
The message `Voltage value looks like a Leakage ID but it's not patched`
shows up as an error on Dell Precision 3540.  This doesn't cause functional
problems and should be downgraded to info.

Link: https://gitlab.freedesktop.org/drm/amd/-/issues/1162
Reviewed-by: Alex Deucher <[email protected]>
Signed-off-by: Mario Limonciello <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
  • Loading branch information
superm1 authored and alexdeucher committed Feb 16, 2022
1 parent 01cbf04 commit d9f8a22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -2109,7 +2109,7 @@ static void smu7_patch_ppt_v1_with_vdd_leakage(struct pp_hwmgr *hwmgr,
}

if (*voltage > ATOM_VIRTUAL_VOLTAGE_ID0)
pr_err("Voltage value looks like a Leakage ID but it's not patched \n");
pr_info("Voltage value looks like a Leakage ID but it's not patched\n");
}

/**
Expand Down Expand Up @@ -2592,7 +2592,7 @@ static void smu7_patch_ppt_v0_with_vdd_leakage(struct pp_hwmgr *hwmgr,
}

if (*voltage > ATOM_VIRTUAL_VOLTAGE_ID0)
pr_err("Voltage value looks like a Leakage ID but it's not patched \n");
pr_info("Voltage value looks like a Leakage ID but it's not patched\n");
}


Expand Down

0 comments on commit d9f8a22

Please sign in to comment.