diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-26 17:06:18 -0400 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-26 17:06:18 -0400 |
commit | 3b619d88a65a5801c85d120f2d39704194433f10 (patch) | |
tree | c1c288f1a650c742bab74465c8f1399d247ae501 | |
parent | 089ae4afd23322bf602d340c531c36a4c8b461ed (diff) |
RADEON: clean up and add comment regarding clones
-rw-r--r-- | src/radeon_output.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index a5b3790..8ac43b2 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -787,7 +787,9 @@ Bool RADEONSetupConnectors(ScrnInfoPtr pScrn) if (radeon_output->type != OUTPUT_LVDS) output->possible_crtcs |= 2; - output->possible_clones = 0 /*1|2*/; + /* we can clone the DACs, and probably TV-out, + but I'm not sure it's worth the trouble */ + output->possible_clones = 0; RADEONInitConnector(output); } @@ -815,7 +817,7 @@ Bool RADEONSetupConnectors(ScrnInfoPtr pScrn) } output->driver_private = radeon_output; output->possible_crtcs = 1; - output->possible_clones = 0 /*1|2*/; + output->possible_clones = 0; RADEONInitConnector(output); @@ -840,7 +842,7 @@ Bool RADEONSetupConnectors(ScrnInfoPtr pScrn) } output->driver_private = radeon_output; output->possible_crtcs = 1; - output->possible_clones = 0 /*1|2*/; + output->possible_clones = 0; RADEONInitConnector(output); } |