diff options
author | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2006-08-29 14:54:15 +0100 |
---|---|---|
committer | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2006-08-29 14:54:15 +0100 |
commit | 1feb733eb8b09a8b07b7a6987add5149c53b0157 (patch) | |
tree | e8ccbde35da5bce710e0ed22fd57b929a7158aaf /src/i810_reg.h | |
parent | 26e6c074c17b2d4e9b9f165468ad45a3b0ecc0ef (diff) |
Fix bug with probing info of DFP2 and LFP2 connected
devices (Aaron Ridout)
Diffstat (limited to 'src/i810_reg.h')
-rw-r--r-- | src/i810_reg.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/i810_reg.h b/src/i810_reg.h index 05710c48..4bb5bf14 100644 --- a/src/i810_reg.h +++ b/src/i810_reg.h @@ -1238,12 +1238,11 @@ typedef enum { TvIndex, DfpIndex, LfpIndex, + Crt2Index, Tv2Index, Dfp2Index, - UnknownIndex, - Unknown2Index, - NumDisplayTypes, - NumKnownDisplayTypes = UnknownIndex + Lfp2Index, + NumDisplayTypes } DisplayType; /* What's connected to the pipes (as reported by the BIOS) */ @@ -1252,10 +1251,10 @@ typedef enum { #define PIPE_TV_ACTIVE (1 << TvIndex) #define PIPE_DFP_ACTIVE (1 << DfpIndex) #define PIPE_LCD_ACTIVE (1 << LfpIndex) +#define PIPE_CRT2_ACTIVE (1 << Crt2Index) #define PIPE_TV2_ACTIVE (1 << Tv2Index) #define PIPE_DFP2_ACTIVE (1 << Dfp2Index) -#define PIPE_UNKNOWN_ACTIVE ((1 << UnknownIndex) | \ - (1 << Unknown2Index)) +#define PIPE_LCD2_ACTIVE (1 << Lfp2Index) #define PIPE_SIZED_DISP_MASK (PIPE_DFP_ACTIVE | \ PIPE_LCD_ACTIVE | \ |