summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2007-04-21 23:59:34 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2007-04-21 23:59:34 +0000
commitb932e5c7a607e76f9eed8c71fc3db6fddf88e10c (patch)
tree0c61abff4ab09b2827046642500b9e2ed592ae90 /sys/dev/pci
parentb6ef44e34bde72b36d1eb9bcdc2f69b38a9e3e73 (diff)
disable ahci debug output. ahci is working on the majority of chipsets,
and its not helping us on those that arent.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/ahci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c
index 0db507622d5..abbbeba088d 100644
--- a/sys/dev/pci/ahci.c
+++ b/sys/dev/pci/ahci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ahci.c,v 1.112 2007/04/08 09:13:31 pascoe Exp $ */
+/* $OpenBSD: ahci.c,v 1.113 2007/04/21 23:59:33 dlg Exp $ */
/*
* Copyright (c) 2006 David Gwynne <dlg@openbsd.org>
@@ -33,7 +33,8 @@
#include <dev/ata/atascsi.h>
-#define AHCI_DEBUG
+/* change to AHCI_DEBUG for dmesg spam */
+#define NO_AHCI_DEBUG
#ifdef AHCI_DEBUG
#define DPRINTF(m, f...) do { if ((ahcidebug & (m)) == (m)) printf(f); } \