diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-01-21 13:28:14 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-01-21 13:28:14 -0500 |
commit | 80e0162ea2c1f793964731268251aba2d3243127 (patch) | |
tree | b441c37cb9a12bcf0b3bb9398cb55fc201c9e808 | |
parent | aea27d9caabb0e54e868a21e6e547733a4ca2709 (diff) |
ATOM: fix encoder init
-rw-r--r-- | src/radeon_atombios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index c20e6878..78d6ee16 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -2198,7 +2198,7 @@ RADEONGetATOMConnectorInfoFromBIOSConnectorTable (ScrnInfoPtr pScrn) if (!radeon_add_encoder(pScrn, radeon_get_encoder_id_from_supported_device(pScrn, (1 << i), ci.sucConnectorInfo.sbfAccess.bfAssociatedDAC), - (i << 1))) + (1 << i))) return FALSE; if (i == ATOM_DEVICE_DFP1_INDEX) |