From: Alex Deucher Date: Tue, 18 Feb 2014 15:25:39 +0000 (-0500) Subject: drm/radeon: fix audio disable on dce6+ X-Git-Tag: v5.15~18341^2^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d7eb0a0940618f36e5937d81c06ad7bf438a99e2;p=mirror_ubuntu-kernels.git drm/radeon: fix audio disable on dce6+ Properly clear the enable bit when audio disable is requested. Signed-off-by: Alex Deucher Reviewed-by: Christian König Cc: stable@vger.kernel.org --- diff --git a/drivers/gpu/drm/radeon/dce6_afmt.c b/drivers/gpu/drm/radeon/dce6_afmt.c index 713a5d359901..36e8f1084621 100644 --- a/drivers/gpu/drm/radeon/dce6_afmt.c +++ b/drivers/gpu/drm/radeon/dce6_afmt.c @@ -283,7 +283,7 @@ static void dce6_audio_enable(struct radeon_device *rdev, bool enable) { WREG32_ENDPOINT(pin->offset, AZ_F0_CODEC_PIN_CONTROL_HOTPLUG_CONTROL, - AUDIO_ENABLED); + enable ? AUDIO_ENABLED : 0); DRM_INFO("%s audio %d support\n", enable ? "Enabling" : "Disabling", pin->id); }