diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2006-06-01 16:52:55 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2006-06-01 16:52:55 +0000 |
commit | 5a0c479d1d73e3d96808a2d151e4ba9f06edcb1b (patch) | |
tree | 22c3b424ce38344f4f53f68da982d90f7599ab98 /sys/dev | |
parent | a5db04d426a325048d2c60423bcea3bc1bb7b211 (diff) |
Make the debug printfs work if RAL_DEBUG is defined.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/rt2560.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/rt2560.c b/sys/dev/ic/rt2560.c index bb9e526363c..b1c55be1b40 100644 --- a/sys/dev/ic/rt2560.c +++ b/sys/dev/ic/rt2560.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rt2560.c,v 1.15 2006/04/20 20:31:12 miod Exp $ */ +/* $OpenBSD: rt2560.c,v 1.16 2006/06/01 16:52:54 robert Exp $ */ /*- * Copyright (c) 2005, 2006 @@ -69,7 +69,7 @@ #ifdef RAL_DEBUG #define DPRINTF(x) do { if (rt2560_debug > 0) printf x; } while (0) #define DPRINTFN(n, x) do { if (rt2560_debug >= (n)) printf x; } while (0) -int rt2560_debug = 0; +int rt2560_debug = 1; #else #define DPRINTF(x) #define DPRINTFN(n, x) |