diff options
author | Alex Deucher <alex@botch2.(none)> | 2007-11-19 00:52:38 -0500 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2007-11-19 00:52:38 -0500 |
commit | 5e8940fa6e33d09091aa4bcf04b0f9e79596e1b8 (patch) | |
tree | 35f8d03a2c7f0f03e20399aa146119de93778e85 /src/radeon_probe.h | |
parent | f02f340e466a415b4e01648ca1e323f4ce125885 (diff) |
fix logic in connector table check for TVs and switch counter to symbolic names
Diffstat (limited to 'src/radeon_probe.h')
-rw-r--r-- | src/radeon_probe.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/radeon_probe.h b/src/radeon_probe.h index bac2f514..24dceea7 100644 --- a/src/radeon_probe.h +++ b/src/radeon_probe.h @@ -66,6 +66,21 @@ typedef enum MT_DP = 8 } RADEONMonitorType; +/* ATOM bios output devices table */ +typedef enum +{ + DEVICE_CRT1 = 0, + DEVICE_LCD1 = 1, + DEVICE_TV1 = 2, + DEVICE_DFP1 = 3, + DEVICE_CRT2 = 4, + DEVICE_LCD2 = 5, + DEVICE_TV2 = 6, + DEVICE_DFP2 = 7, + DEVICE_CV = 8, + DEVICE_DFP3 = 9 +} RADEONDeviceType; + typedef enum { CONNECTOR_NONE, |