mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
amd/powerplay: disable powerplay by default initially
Hopefully we can enable this by default once we get more upstream feedback on stability, etc. Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
45b0cf54bc
commit
53d8eabe3d
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ static int amdgpu_pp_early_init(void *handle)
|
|||
switch (adev->asic_type) {
|
||||
case CHIP_TONGA:
|
||||
case CHIP_FIJI:
|
||||
adev->pp_enabled = (amdgpu_powerplay == 0) ? false : true;
|
||||
adev->pp_enabled = (amdgpu_powerplay > 0) ? true : false;
|
||||
break;
|
||||
default:
|
||||
adev->pp_enabled = (amdgpu_powerplay > 0) ? true : false;
|
||||
|
|
Loading…
Add table
Reference in a new issue