search for: fbscreeninit

Displaying 3 results from an estimated 3 matches for "fbscreeninit".

Did you mean: wfbscreeninit
2019 Jan 21
2
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
Fixes warning with xserver 1.20 and gcc 8.2: nv_driver.c:1443:9: warning: implicit declaration of function ‘wfbScreenInit’; did you mean ‘fbScreenInit’? [-Wimplicit-function-declaration] ret = wfbScreenInit(pScreen, FBStart, pScrn->virtualX, ^~~~~~~~~~~~~ fbScreenInit (See xserver 706e6d9cd074da606016ed4ecff51e9c2a822087) Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- src/nv_incl...
2019 Jan 23
0
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
...ither way, I'm going to revert this until we get a better idea of what's going on. On Sun, Jan 20, 2019 at 7:20 PM Rhys Kidd <rhyskidd at gmail.com> wrote: > > Fixes warning with xserver 1.20 and gcc 8.2: > > nv_driver.c:1443:9: warning: implicit declaration of function ‘wfbScreenInit’; did you mean ‘fbScreenInit’? [-Wimplicit-function-declaration] > ret = wfbScreenInit(pScreen, FBStart, pScrn->virtualX, > ^~~~~~~~~~~~~ > fbScreenInit > > (See xserver 706e6d9cd074da606016ed4ecff51e9c2a822087) > > Signed-off-by: Rhys Kidd <rhyskidd...
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...alse; + break; + } +} diff --git a/src/nv_driver.c b/src/nv_driver.c index d7e8025..4c6b691 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -157,6 +157,12 @@ static const char *fbSymbols[] = { NULL }; +static const char *wfbSymbols[] = { + "wfbPictureInit", + "wfbScreenInit", + NULL +}; + static const char *exaSymbols[] = { "exaDriverInit", "exaOffscreenInit", @@ -285,7 +291,7 @@ nouveauSetup(pointer module, pointer opts, int *errmaj, int *errmin) * Tell the loader about symbols from other modules that this module * might...