diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-02 02:08:19 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-02 02:08:19 +0000 |
commit | ec5e745197fb75dbfb99c7146e3b87aa07c20b63 (patch) | |
tree | e655705bbbf06ed06380e8aed662fabaff1a90b5 /sys | |
parent | c5e97b4d547af749a02d44bf03d05310c21f9d98 (diff) |
VIC_DEBUG is useless, so it goes away
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_vic.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/dev/pci/if_vic.c b/sys/dev/pci/if_vic.c index e886f6021fc..29e080b7478 100644 --- a/sys/dev/pci/if_vic.c +++ b/sys/dev/pci/if_vic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vic.c,v 1.19 2006/11/02 02:01:36 dlg Exp $ */ +/* $OpenBSD: if_vic.c,v 1.20 2006/11/02 02:08:18 dlg Exp $ */ /* * Copyright (c) 2006 Reyk Floeter <reyk@openbsd.org> @@ -55,13 +55,6 @@ #include <dev/pci/if_vicreg.h> -#ifdef VIC_DEBUG -int vic_debug = 0; -#define DPRINTF(x...) do { if (vic_debug) printf(x); } while (0) -#else -#define DPRINTF(x...) -#endif - #define VIC_PCI_BAR PCI_MAPREG_START /* Base Address Register */ #define VIC_NBUF 100 |