summaryrefslogtreecommitdiff
path: root/nvkm/include/core/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'nvkm/include/core/debug.h')
-rw-r--r--nvkm/include/core/debug.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/nvkm/include/core/debug.h b/nvkm/include/core/debug.h
deleted file mode 100644
index 8092e2e90..000000000
--- a/nvkm/include/core/debug.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef __NOUVEAU_DEBUG_H__
-#define __NOUVEAU_DEBUG_H__
-
-extern int nv_info_debug_level;
-
-#define NV_DBG_FATAL 0
-#define NV_DBG_ERROR 1
-#define NV_DBG_WARN 2
-#define NV_DBG_INFO nv_info_debug_level
-#define NV_DBG_DEBUG 4
-#define NV_DBG_TRACE 5
-#define NV_DBG_PARANOIA 6
-#define NV_DBG_SPAM 7
-
-#define NV_DBG_INFO_NORMAL 3
-#define NV_DBG_INFO_SILENT NV_DBG_DEBUG
-
-#define nv_debug_level(a) nv_info_debug_level = NV_DBG_INFO_##a
-
-#endif