diff options
Diffstat (limited to 'drivers/gpu/drm/amd/pm/amdgpu_dpm.c')
| -rw-r--r-- | drivers/gpu/drm/amd/pm/amdgpu_dpm.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/gpu/drm/amd/pm/amdgpu_dpm.c b/drivers/gpu/drm/amd/pm/amdgpu_dpm.c index f84bfed50681..eee919577b44 100644 --- a/drivers/gpu/drm/amd/pm/amdgpu_dpm.c +++ b/drivers/gpu/drm/amd/pm/amdgpu_dpm.c @@ -199,14 +199,14 @@ int amdgpu_dpm_notify_rlc_state(struct amdgpu_device *adev, bool en)  	return ret;  } -bool amdgpu_dpm_is_baco_supported(struct amdgpu_device *adev) +int amdgpu_dpm_is_baco_supported(struct amdgpu_device *adev)  {  	const struct amd_pm_funcs *pp_funcs = adev->powerplay.pp_funcs;  	void *pp_handle = adev->powerplay.pp_handle; -	bool ret; +	int ret;  	if (!pp_funcs || !pp_funcs->get_asic_baco_capability) -		return false; +		return 0;  	/* Don't use baco for reset in S3.  	 * This is a workaround for some platforms  	 * where entering BACO during suspend @@ -217,7 +217,7 @@ bool amdgpu_dpm_is_baco_supported(struct amdgpu_device *adev)  	 * devices.  Needs more investigation.  	 */  	if (adev->in_s3) -		return false; +		return 0;  	mutex_lock(&adev->pm.mutex); | 
