diff options
author | Kevin Brace <kevinbrace@gmx.com> | 2019-04-17 16:07:49 -0700 |
---|---|---|
committer | Kevin Brace <kevinbrace@gmx.com> | 2019-04-17 16:07:49 -0700 |
commit | 6e59935a7b93135e23e2b81f4c6e5c1ec9da369d (patch) | |
tree | 7d64d3e7ce306ec51cf9f531c6018fdc4d9b022c | |
parent | 9d679b9820124cde179e4c6d4139dbfbf12b4a07 (diff) |
Fix for Laguna I2C bus code compilation error
When commit 9a5e19597be4f5ee4c1030e4a716207789e78668 (cirrus: convert
to compat server API.) updated the code, it did not update Laguna I2C
bus code to handle newer X Servers.
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
-rw-r--r-- | src/lg_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lg_driver.c b/src/lg_driver.c index daaf4f9..be8963a 100644 --- a/src/lg_driver.c +++ b/src/lg_driver.c @@ -359,7 +359,7 @@ LgDoDDC(ScrnInfoPtr pScrn) /* * Read and output monitor info using DDC2 over I2C bus. */ - MonInfo = xf86DoEDID_DDC2(pScrn->scrnIndex, pCir->I2CPtr1); + MonInfo = xf86DoEDID_DDC2(XF86_SCRN_ARG(pScrn), pCir->I2CPtr1); xf86DrvMsg(pScrn->scrnIndex, X_INFO, "I2C Monitor info: %p\n", (void *)MonInfo); xf86PrintEDID(MonInfo); |