diff options
Diffstat (limited to 'src/g80_sor.c')
-rw-r--r-- | src/g80_sor.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/g80_sor.c b/src/g80_sor.c index 7d377a8..55a643f 100644 --- a/src/g80_sor.c +++ b/src/g80_sor.c @@ -114,7 +114,7 @@ static const xf86OutputFuncsRec G80SorOutputFuncs = { }; xf86OutputPtr -G80CreateSor(ScrnInfoPtr pScrn, ORNum or, int i2cPort) +G80CreateSor(ScrnInfoPtr pScrn, ORNum or) { G80OutputPrivPtr pPriv = xnfcalloc(sizeof(*pPriv), 1); xf86OutputPtr output; @@ -133,8 +133,5 @@ G80CreateSor(ScrnInfoPtr pScrn, ORNum or, int i2cPort) output->interlaceAllowed = TRUE; output->doubleScanAllowed = TRUE; - /* Create an I2C object */ - G80I2CInit(output, i2cPort); - return output; } |