diff options
| author | Edward O'Callaghan <[email protected]> | 2016-07-12 00:17:52 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2016-07-29 18:36:48 +0000 |
| commit | ed5121a3d8fdd8992a82a3815642fc46108300fc (patch) | |
| tree | ba3f1b36808a7b87dd771a3761f1a966f1fb0388 /drivers/gpu/drm/amd/amdgpu/cz_dpm.c | |
| parent | drivers/amdgpu: Remove spurious semicolons (diff) | |
| download | kernel-ed5121a3d8fdd8992a82a3815642fc46108300fc.tar.gz kernel-ed5121a3d8fdd8992a82a3815642fc46108300fc.zip | |
drivers/amdgpu: Use 'true/false' for bool typed variables
Found-by: Coccinelle
Signed-off-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Tom St Denis <[email protected]>
Reviewed-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/cz_dpm.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/cz_dpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/cz_dpm.c b/drivers/gpu/drm/amd/amdgpu/cz_dpm.c index 8ba07e79d4cb..2a11413ed54a 100644 --- a/drivers/gpu/drm/amd/amdgpu/cz_dpm.c +++ b/drivers/gpu/drm/amd/amdgpu/cz_dpm.c @@ -425,7 +425,7 @@ static int cz_dpm_init(struct amdgpu_device *adev) pi->mgcg_cgtt_local1 = 0x0; pi->clock_slow_down_step = 25000; pi->skip_clock_slow_down = 1; - pi->enable_nb_ps_policy = 0; + pi->enable_nb_ps_policy = false; pi->caps_power_containment = true; pi->caps_cac = true; pi->didt_enabled = false; |
