use xf86InterpretEDID() instead of xf86InterpretEEDID()

xf86InterpretEEDID() is doing nothing else than calling xf86InterpretEDID().

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-21 12:05:21 +01:00
committed by Enrico Weigelt
parent fbdc895c2e
commit f36d801d74

View File

@@ -252,7 +252,7 @@ NVProbeDDC (ScrnInfoPtr pScrn, int bus)
if (ioctl(xf86Info.consoleFd, WSDISPLAYIO_GET_EDID, &ei) != -1) {
xf86Msg(X_INFO, "got %d bytes worth of EDID from wsdisplay\n",
ei.data_size);
tmp = xf86InterpretEEDID(pScrn->scrnIndex, buffer);
tmp = xf86InterpretEDID(pScrn->scrnIndex, buffer);
tmp->flags |= MONITOR_EDID_COMPLETE_RAWDATA;
MonInfo = tmp;
}