summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2014-01-23 00:46:17 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2014-01-23 00:46:17 +0000
commit561e452bf0696f8ea459f6c5aa30c64681aed67d (patch)
treeaad1bd130ccead447314be67497b12f4b55916b8 /sys/dev
parent0854a7c0db4240b7e8839cc78acbd52e422674a9 (diff)
drm/radeon/atom: workaround vbios bug in transmitter table on rs780
From Alex Deucher 3211bb3ea5444754b7281e342f613596fed7f374 in ubuntu 3.8 c23632d4e57c0dd20bf50eca08fa0eb8ad3ff680 in mainline linux
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/drm/radeon/atombios_encoders.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/radeon/atombios_encoders.c b/sys/dev/pci/drm/radeon/atombios_encoders.c
index 9c0383c10b4..b1ea6d55f31 100644
--- a/sys/dev/pci/drm/radeon/atombios_encoders.c
+++ b/sys/dev/pci/drm/radeon/atombios_encoders.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atombios_encoders.c,v 1.2 2014/01/23 00:40:52 jsg Exp $ */
+/* $OpenBSD: atombios_encoders.c,v 1.3 2014/01/23 00:46:16 jsg Exp $ */
/*
* Copyright 2007-11 Advanced Micro Devices, Inc.
* Copyright 2008 Red Hat Inc.
@@ -1635,7 +1635,7 @@ radeon_atom_encoder_dpms_dig(struct drm_encoder *encoder, int mode)
* does the same thing and more.
*/
if ((rdev->family != CHIP_RV710) && (rdev->family != CHIP_RV730) &&
- (rdev->family != CHIP_RS880))
+ (rdev->family != CHIP_RS780) && (rdev->family != CHIP_RS880))
atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_ENABLE_OUTPUT, 0, 0);
}
if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(encoder)) && connector) {