summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Armani <armani@cvs.openbsd.org>2010-06-10 05:31:42 +0000
committerJonathan Armani <armani@cvs.openbsd.org>2010-06-10 05:31:42 +0000
commita9e9940cddbf86d05e872b0ccde2724db2d66597 (patch)
tree28cc055a3d54ccb64d6c32c9049509e927f37076 /sys
parent41015be7f9de6db849920e9f2d72bb12dd47c7bb (diff)
vscsi just works, as a proof the debug macro is wrong and was never used,
just remove it. "vscsi is kinda perfect" "you should delete it" dlg@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/vscsi.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/dev/vscsi.c b/sys/dev/vscsi.c
index bf45052df41..d7579b50da5 100644
--- a/sys/dev/vscsi.c
+++ b/sys/dev/vscsi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vscsi.c,v 1.9 2010/05/20 00:55:17 krw Exp $ */
+/* $OpenBSD: vscsi.c,v 1.10 2010/06/10 05:31:41 armani Exp $ */
/*
* Copyright (c) 2008 David Gwynne <dlg@openbsd.org>
@@ -36,19 +36,6 @@
#include <dev/vscsivar.h>
-#ifdef VSCSI_DEBUG
-#define VSCSI_D_INIT (1<<0)
-
-int vscsidebug = 0;
-
-#define DPRINTF(_m, _p...) do { \
- if (ISSET(vscsidebug, (_m))) \
- printf(p); \
- } while (0)
-#else
-#define DPRINTF(_m, _p...) /* _m, _p */
-#endif
-
int vscsi_match(struct device *, void *, void *);
void vscsi_attach(struct device *, struct device *, void *);
void vscsi_shutdown(void *);