radeon: limit LVDS to first CRTC for now

main
Dave Airlie 2008-08-28 11:30:55 +10:00
parent 6a27e019bc
commit 9afe872ae9
2 changed files with 4 additions and 2 deletions

View File

@ -376,7 +376,8 @@ struct drm_encoder *radeon_encoder_lvtma_add(struct drm_device *dev, int bios_in
encoder = &radeon_encoder->base;
encoder->possible_crtcs = 0x3;
/* Set LVTMA to only use crtc 0 */
encoder->possible_crtcs = 0x1;
encoder->possible_clones = 0;
drm_encoder_init(dev, encoder, &radeon_atom_lvtma_enc_funcs,
DRM_MODE_ENCODER_LVDS);

View File

@ -374,7 +374,8 @@ struct drm_encoder *radeon_encoder_legacy_lvds_add(struct drm_device *dev, int b
encoder = &radeon_encoder->base;
encoder->possible_crtcs = 0x3;
/* Limit LVDS to crtc 0 for RMX */
encoder->possible_crtcs = 0x1;
encoder->possible_clones = 0;
drm_encoder_init(dev, encoder, &radeon_legacy_lvds_enc_funcs,
DRM_MODE_ENCODER_LVDS);