diff options
author | 1999-07-19 00:32:44 +0000 | |
---|---|---|
committer | 1999-07-19 00:32:44 +0000 | |
commit | 01dcc47d0897966b5dd853921a5a841792c9f825 (patch) | |
tree | d670824533ed1349390ea9419e3b298ad5df81d9 | |
parent | if we run /etc/rc.shutdown ourselves, do it on /dev/console (diff) | |
download | wireguard-openbsd-01dcc47d0897966b5dd853921a5a841792c9f825.tar.xz wireguard-openbsd-01dcc47d0897966b5dd853921a5a841792c9f825.zip |
Lower chatiness
-rw-r--r-- | sys/dev/atapiscsi/atapiscsi.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/pciide.c | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/atapiscsi/atapiscsi.c b/sys/dev/atapiscsi/atapiscsi.c index 01aefe60750..36f73e8dce4 100644 --- a/sys/dev/atapiscsi/atapiscsi.c +++ b/sys/dev/atapiscsi/atapiscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiscsi.c,v 1.1 1999/07/18 21:25:18 csapuntz Exp $ */ +/* $OpenBSD: atapiscsi.c,v 1.2 1999/07/19 00:32:44 csapuntz Exp $ */ /* * This code is derived from code with the copyright below. @@ -81,7 +81,7 @@ #define DEBUG_FUNCS 0x08 #define DEBUG_PROBE 0x10 #ifdef WDCDEBUG -int wdcdebug_atapi_mask = 0xFF; +int wdcdebug_atapi_mask = 0x0; #define WDCDEBUG_PRINT(args, level) \ if (wdcdebug_atapi_mask & (level)) \ printf args diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index 1b17e58ceca..2e834b7b490 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.1 1999/07/18 21:25:19 csapuntz Exp $ */ +/* $OpenBSD: pciide.c,v 1.2 1999/07/19 00:32:44 csapuntz Exp $ */ /* $NetBSD: pciide.c,v 1.40 1999/07/12 13:49:38 bouyer Exp $ */ /* @@ -53,7 +53,7 @@ #define DEBUG_PROBE 0x10 #ifdef WDCDEBUG -int wdcdebug_pciide_mask; +int wdcdebug_pciide_mask = 0; #define WDCDEBUG_PRINT(args, level) \ if (wdcdebug_pciide_mask & (level)) printf args #else @@ -818,12 +818,10 @@ pciide_dma_table_setup(sc, channel, drive) struct pciide_dma_maps *dma_maps = &sc->pciide_channels[channel].dma_maps[drive]; - printf ("pciide_dma_table_setup: 1\n"); /* If table was already allocated, just return */ if (dma_maps->dma_table) return 0; - printf ("pciide_dma_table_setup: 2\n"); /* Allocate memory for the DMA tables and map it */ if ((error = bus_dmamem_alloc(sc->sc_dmat, dma_table_size, IDEDMA_TBL_ALIGN, IDEDMA_TBL_ALIGN, &seg, 1, &rseg, |