summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2015-05-30 18:09:27 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2015-05-30 18:09:27 +0000
commit99fd7046088417b6d768636a20dc1ae7def2dcc7 (patch)
tree0064636febf8551da4bd16e82f18170f5536f45c /sys
parent1dc4f974ddd3716a10977311acbaef0e8e71db86 (diff)
DRMDEBUG not DRM_DEBUG. From frantisek holop.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/drm/drmP.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h
index c2c0e169433..cb8838fd975 100644
--- a/sys/dev/pci/drm/drmP.h
+++ b/sys/dev/pci/drm/drmP.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: drmP.h,v 1.195 2015/04/18 14:47:34 jsg Exp $ */
+/* $OpenBSD: drmP.h,v 1.196 2015/05/30 18:09:26 jsg Exp $ */
/* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*-
* Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com
*/
@@ -188,7 +188,7 @@ drm_can_sleep(void)
curproc->p_pid, __func__ , ## arg)
-#ifdef DRM_DEBUG
+#ifdef DRMDEBUG
#define DRM_INFO(fmt, arg...) printf("drm: " fmt, ## arg)
#else
#define DRM_INFO(fmt, arg...) do { } while(/* CONSTCOND */ 0)