Bug #14885: Add missing static keywords.

This commit is contained in:
Aaron Plattner
2008-03-07 12:32:40 -08:00
parent 4965498f23
commit f88ef39098
3 changed files with 7 additions and 7 deletions

View File

@@ -77,7 +77,7 @@ G80DacDPMSSet(xf86OutputPtr output, int mode)
pNv->reg[(0x0061A004+off)/4] = tmp;
}
Bool
static Bool
G80DacModeFixup(xf86OutputPtr output, DisplayModePtr mode,
DisplayModePtr adjusted_mode)
{

View File

@@ -423,7 +423,7 @@ G80CrtcBlankScreen(xf86CrtcPtr crtc, Bool blank)
}
}
void
static void
G80CrtcDPMSSet(xf86CrtcPtr crtc, int mode)
{
}
@@ -442,12 +442,12 @@ static void G80CrtcShowHideCursor(xf86CrtcPtr crtc, Bool show, Bool update)
}
}
void G80CrtcShowCursor(xf86CrtcPtr crtc)
static void G80CrtcShowCursor(xf86CrtcPtr crtc)
{
G80CrtcShowHideCursor(crtc, TRUE, TRUE);
}
void G80CrtcHideCursor(xf86CrtcPtr crtc)
static void G80CrtcHideCursor(xf86CrtcPtr crtc)
{
G80CrtcShowHideCursor(crtc, FALSE, TRUE);
}

View File

@@ -952,7 +952,7 @@ NVSwitchMode(int scrnIndex, DisplayModePtr mode, int flags)
return NVModeInit(pScrn, mode);
}
Bool
static Bool
NVSwitchModeVBE(int scrnIndex, DisplayModePtr mode, int flags)
{
ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
@@ -1232,7 +1232,7 @@ NVModesAdd(DisplayModePtr Modes, DisplayModePtr Additions)
}
/* Mandatory */
Bool
static Bool
NVPreInit(ScrnInfoPtr pScrn, int flags)
{
NVPtr pNv;
@@ -2016,7 +2016,7 @@ NVMapMem(ScrnInfoPtr pScrn)
return TRUE;
}
Bool
static Bool
NVMapMemFBDev(ScrnInfoPtr pScrn)
{
NVPtr pNv;