mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 18:36:00 +00:00
drm/amd/pm: Remove arcturus min power limit
As per power team, there is no need to impose a lower bound on arcturus power limit. Any unreasonable limit set will result in frequent throttling. Signed-off-by: Lijo Lazar <lijo.lazar@amd.com> Reviewed-by: Kenneth Feng <kenneth.feng@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org
This commit is contained in:
parent
76c7f08094
commit
da868898cf
@ -1344,8 +1344,12 @@ static int arcturus_get_power_limit(struct smu_context *smu,
|
||||
*default_power_limit = power_limit;
|
||||
if (max_power_limit)
|
||||
*max_power_limit = power_limit;
|
||||
/**
|
||||
* No lower bound is imposed on the limit. Any unreasonable limit set
|
||||
* will result in frequent throttling.
|
||||
*/
|
||||
if (min_power_limit)
|
||||
*min_power_limit = power_limit;
|
||||
*min_power_limit = 0;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user