xfree86: ddc: make DMTModes[] static
Only used inside xf86EdidModes.c, so can be made static. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
b60303c16e
commit
c25368e091
|
@ -42,6 +42,4 @@ extern _X_EXPORT xf86MonPtr xf86InterpretEEDID(int screenIndex, Uchar * block);
|
|||
|
||||
extern _X_EXPORT Bool xf86SetDDCproperties(ScrnInfoPtr pScreen, xf86MonPtr DDC);
|
||||
|
||||
extern _X_EXPORT const DisplayModeRec DMTModes[];
|
||||
|
||||
#endif
|
||||
|
|
|
@ -314,7 +314,7 @@ DDCModesFromEstablished(int scrnIndex, struct established_timings *timing,
|
|||
}
|
||||
|
||||
/* Autogenerated from the DMT spec */
|
||||
const DisplayModeRec DMTModes[] = {
|
||||
static const DisplayModeRec DMTModes[] = {
|
||||
{MODEPREFIX, 31500, 640, 672, 736, 832, 0, 350, 382, 385, 445, 0, V_PHSYNC | V_NVSYNC, MODESUFFIX}, /* 640x350@85Hz */
|
||||
{MODEPREFIX, 31500, 640, 672, 736, 832, 0, 400, 401, 404, 445, 0, V_NHSYNC | V_PVSYNC, MODESUFFIX}, /* 640x400@85Hz */
|
||||
{MODEPREFIX, 35500, 720, 756, 828, 936, 0, 400, 401, 404, 446, 0, V_NHSYNC | V_PVSYNC, MODESUFFIX}, /* 720x400@85Hz */
|
||||
|
|
Loading…
Reference in New Issue