diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2008-06-12 22:16:17 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2008-06-12 22:16:17 +0000 |
commit | 39b2a60b195c9984470da478d3b248e1792f1730 (patch) | |
tree | d2122a89e5d42525a7125b956d51f1abfd3c43fa | |
parent | edacf008bb0438ebebd078c01f202de41674cfd3 (diff) |
disable debug printfs and descriptor dumps
-rw-r--r-- | sys/dev/usb/uvideo.c | 4 | ||||
-rw-r--r-- | sys/dev/video.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c index b9ed047b9ae..493ce9b5a51 100644 --- a/sys/dev/usb/uvideo.c +++ b/sys/dev/usb/uvideo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.c,v 1.33 2008/06/11 01:27:31 robert Exp $ */ +/* $OpenBSD: uvideo.c,v 1.34 2008/06/12 22:16:16 robert Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -44,7 +44,7 @@ #include <dev/video_if.h> -#define UVIDEO_DEBUG +#undef UVIDEO_DEBUG #undef UVIDEO_DUMP #ifdef UVIDEO_DEBUG diff --git a/sys/dev/video.c b/sys/dev/video.c index 229ba657ba3..c126d36160f 100644 --- a/sys/dev/video.c +++ b/sys/dev/video.c @@ -1,4 +1,4 @@ -/* $OpenBSD: video.c,v 1.13 2008/06/12 21:20:00 mglocker Exp $ */ +/* $OpenBSD: video.c,v 1.14 2008/06/12 22:16:16 robert Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> * @@ -33,7 +33,7 @@ #include <dev/video_if.h> #include <dev/videovar.h> -#define VIDEO_DEBUG /* XXX remove from here somewhen */ +#undef VIDEO_DEBUG /* XXX remove from here somewhen */ #ifdef VIDEO_DEBUG #define DPRINTF(x) do { printf x; } while (0) |