summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Vesely <jan.vesely@rutgers.edu>2015-03-18 14:17:26 -0400
committerJan Vesely <jan.vesely@rutgers.edu>2015-03-20 17:36:04 -0400
commitcfbe9c9807888d24a56d9b1df28db7da669dee85 (patch)
tree5263eca1f07d8d42f96078b8e171cb1acaf2626e
parent6fc0e4ba1ea153ff949cba0002fc5ed544de0de0 (diff)
Remove drmSetDebugMsgFunction and related infrastructure
Not used anywhere Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r--xf86drm.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/xf86drm.c b/xf86drm.c
index 43d07000..e73cdddc 100644
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -114,11 +114,6 @@ drmDebugPrint(const char *format, va_list ap)
return vfprintf(stderr, format, ap);
}
-typedef int DRM_PRINTFLIKE(1, 0) (*debug_msg_func_t)(const char *format,
- va_list ap);
-
-static debug_msg_func_t drm_debug_print = drmDebugPrint;
-
void
drmMsg(const char *format, ...)
{
@@ -130,18 +125,12 @@ drmMsg(const char *format, ...)
if (drm_server_info) {
drm_server_info->debug_print(format,ap);
} else {
- drm_debug_print(format, ap);
+ drmDebugPrint(format, ap);
}
va_end(ap);
}
}
-void
-drmSetDebugMsgFunction(debug_msg_func_t debug_msg_ptr)
-{
- drm_debug_print = debug_msg_ptr;
-}
-
static void *drmHashTable = NULL; /* Context switch callbacks */
void *drmGetHashTable(void)