drm/radeon/kms: disable HDMI audio for now on rv710/rv730

Support isn't correct yet and we are getting green tinges on the
displays.

Signed-off-by: Dave Airlie <airlied@redhat.com>

+1 -1
+1 -1
drivers/gpu/drm/radeon/r600_audio.c
··· 35 */ 36 static int r600_audio_chipset_supported(struct radeon_device *rdev) 37 { 38 - return rdev->family >= CHIP_R600 39 || rdev->family == CHIP_RS600 40 || rdev->family == CHIP_RS690 41 || rdev->family == CHIP_RS740;
··· 35 */ 36 static int r600_audio_chipset_supported(struct radeon_device *rdev) 37 { 38 + return (rdev->family >= CHIP_R600 && rdev->family < CHIP_RV710) 39 || rdev->family == CHIP_RS600 40 || rdev->family == CHIP_RS690 41 || rdev->family == CHIP_RS740;