From: Brian Paul Date: Fri, 6 Jun 2008 21:10:42 +0000 (-0600) Subject: egl: make _eglChooseDRMDriver() non-static X-Git-Tag: mesa-7.8~4139^2~390^2~1324 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=47ddcd2a7144ea456fcd52b9470e4e41b878af48;p=platform%2Fupstream%2Fmesa.git egl: make _eglChooseDRMDriver() non-static --- diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index 80fa49b..92c5299 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -39,7 +39,7 @@ static const char *SysFS = "/sys/class"; /** * Given a card number, use sysfs to determine the DRI driver name. */ -static const char * +const char * _eglChooseDRMDriver(int card) { #if 0 @@ -214,7 +214,7 @@ _eglCloseDriver(_EGLDriver *drv, EGLDisplay dpy) void *handle = drv->LibHandle; EGLBoolean b; - _eglLog(_EGL_INFO, "Closing driver"); + _eglLog(_EGL_DEBUG, "Closing %s", drv->Name); /* * XXX check for currently bound context/surfaces and delete them? diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index af028ea..1eae6f8 100644 --- a/src/egl/main/egldriver.h +++ b/src/egl/main/egldriver.h @@ -46,6 +46,9 @@ extern _EGLDriver *_eglMain(_EGLDisplay *dpy, const char *args); extern const char * +_eglChooseDRMDriver(int card); + +extern const char * _eglChooseDriver(_EGLDisplay *dpy);