diff options
author | Eric Anholt <eric@anholt.net> | 2008-06-19 14:27:30 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-06-19 15:02:06 -0700 |
commit | 65ad29d78793c7804f133a58de80ffaa0404ca28 (patch) | |
tree | 87fbbb759048fa92a96222304099a32385c3fa20 /src/common.h | |
parent | ea0d21006ec71bc56acde7291e5f8d28e54b83fe (diff) |
Automatically detect the presence of HDMI.
Now, SDVO is only probed if the SDVO detected bit is set. If the SDVO probe
fails, but the detect bit is set, assume that it's an HDMI output.
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 5efdc0c0..1765bb51 100644 --- a/src/common.h +++ b/src/common.h @@ -372,6 +372,7 @@ extern int I810_DEBUG; #define HWS_NEED_GFX(pI810) (IS_G33CLASS(pI810) || IS_IGD_GM(pI810) || IS_G4X(pI810)) /* chipsets require status page in non stolen memory */ #define HWS_NEED_NONSTOLEN(pI810) (IS_IGD_GM(pI810) || IS_G4X(pI810)) +#define SUPPORTS_INTEGRATED_HDMI(pI810) (IS_IGD_GM(pI810) || IS_G4X(pI810)) #define GTT_PAGE_SIZE KB(4) #define ROUND_TO(x, y) (((x) + (y) - 1) / (y) * (y)) |