mirror of
https://github.com/X11Libre/xf86-video-nv.git
synced 2026-03-24 01:24:21 +00:00
Bug #14885: Add missing static keywords.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user