diff options
author | Alex Deucher <alex@botch2.com> | 2007-07-31 01:28:05 -0400 |
---|---|---|
committer | Alex Deucher <alex@botch2.com> | 2007-07-31 01:28:05 -0400 |
commit | 22d460d3ad991223aa1fbd7e5edeb45e36c65dc0 (patch) | |
tree | f21925edfcf225264e7baa942d792f6400053fe9 | |
parent | 4822a2b837334f408f962646ab5ea4f8b0335ac9 (diff) |
RADEON: fix name of tv output
-rw-r--r-- | src/radeon_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 9c11bf6..2790ddf 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -1297,9 +1297,9 @@ void RADEONSetOutputType(ScrnInfoPtr pScrn, RADEONOutputPrivatePtr radeon_output case CONNECTOR_DVI_D: output = OUTPUT_DVI; break; case CONNECTOR_CTV: - output = OUTPUT_STV; break; - case CONNECTOR_STV: output = OUTPUT_CTV; break; + case CONNECTOR_STV: + output = OUTPUT_STV; break; case CONNECTOR_NONE: case CONNECTOR_UNSUPPORTED: default: |