diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2006-04-19 14:23:45 -0700 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2006-04-19 14:23:45 -0700 |
commit | 88bb4b578857588f34ac84b7a20577139eccab6d (patch) | |
tree | dc0f908bdaffce0d1ebddad10cab827d84213519 /src/i830_display.h | |
parent | d8f7dfac769d7b03f069306b1296bb2e1e08b009 (diff) |
Add more SDVO code. It's taken from airlied's driver, but with magic numbers
replaced by symbolic names in many places. I tried to restrain myself from
functional changes in airlied's code in this pass.
Diffstat (limited to 'src/i830_display.h')
-rw-r--r-- | src/i830_display.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/i830_display.h b/src/i830_display.h index d8e4e5e8..9f07ba16 100644 --- a/src/i830_display.h +++ b/src/i830_display.h @@ -25,7 +25,14 @@ * */ +/* i830_display.c */ Bool i830SetMode(ScrnInfoPtr pScrn, DisplayModePtr pMode); Bool i830DetectCRT(ScrnInfoPtr pScrn); void i830SetLVDSPanelPower(ScrnInfoPtr pScrn, Bool on); void i830PipeSetBase(ScrnInfoPtr pScrn, int pipe, int x, int y); + +/* i830_sdvo.c */ +I830SDVOPtr I830SDVOInit(I2CBusPtr b); +Bool I830I2CDetectSDVOController(ScrnInfoPtr pScrn, int output_index); +Bool I830SDVOPreSetMode(I830SDVOPtr s, DisplayModePtr mode); +Bool I830SDVOPostSetMode(I830SDVOPtr s, DisplayModePtr mode); |