diff options
Diffstat (limited to 'src/g80_type.h')
-rw-r--r-- | src/g80_type.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/g80_type.h b/src/g80_type.h index 15b8792..819a9f6 100644 --- a/src/g80_type.h +++ b/src/g80_type.h @@ -25,6 +25,11 @@ typedef enum ORNum { SOR1 = 1 } ORNum; +typedef enum PanelType { + TMDS, + LVDS, +} PanelType; + typedef enum AccelMethod { XAA, EXA, @@ -41,8 +46,9 @@ typedef struct G80Rec { const unsigned char*table1; int offscreenHeight; struct { - ORNum dac; - ORNum sor; + ORNum dac; + ORNum sor; + PanelType panelType; } i2cMap[4]; xf86Int10InfoPtr int10; |