diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2008-03-07 12:32:40 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2008-03-07 12:38:01 -0800 |
commit | f88ef390985babdb2b489cf52bfa587e1879db38 (patch) | |
tree | fcc69387629547041ee4bba8f31494a220be76b4 /src/nv_driver.c | |
parent | 4965498f238fbe3d8a0d0b84bf8bceb9237e472a (diff) |
Bug #14885: Add missing static keywords.
Diffstat (limited to 'src/nv_driver.c')
-rw-r--r-- | src/nv_driver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nv_driver.c b/src/nv_driver.c index e151bb4..84c5a5d 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -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; |