diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-01-21 15:20:47 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-01-21 15:20:47 -0500 |
commit | 1305376b009d17d65b4935896dc35cb7530f7c52 (patch) | |
tree | 1056376459d3dd96921073e76d3e6d0edc303a37 /src/radeon_atombios.c | |
parent | 9e0cc0ca5d7bc68756ae92ee3b5b2392366be71a (diff) |
Move active_device setup to detect()
Also add encoder debugging printouts
Diffstat (limited to 'src/radeon_atombios.c')
-rw-r--r-- | src/radeon_atombios.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index 9a4927c4..c0bd48d5 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -2299,6 +2299,12 @@ RADEONGetATOMConnectorInfoFromBIOSConnectorTable (ScrnInfoPtr pScrn) } } + for (i = 0; i < ATOM_MAX_SUPPORTED_DEVICE; i++) { + if (info->encoders[i] != NULL) { + ErrorF("encoder: 0x%x\n", info->encoders[i]->encoder_id); + } + } + xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Bios Connector table: \n"); for (i = 0; i < ATOM_MAX_SUPPORTED_DEVICE; i++) { if (info->BiosConnector[i].valid) { |