diff options
author | peter <peter@FreeBSD.org> | 1999-08-23 12:08:45 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-08-23 12:08:45 +0000 |
commit | f747addc377ded799fbdac8b2525d3a6c6f8ad57 (patch) | |
tree | a829bf60f3afd12fd3f357b3447b54429b3b1f77 /sys/dev/aic7xxx | |
parent | 7cded4bfc51e5f3d19b11ef5abdc7c2b595fd9d4 (diff) | |
download | FreeBSD-src-f747addc377ded799fbdac8b2525d3a6c6f8ad57.zip FreeBSD-src-f747addc377ded799fbdac8b2525d3a6c6f8ad57.tar.gz |
Disable some apparently stray debug printfs:
ahc0: <Adaptec 274X SCSI host adapter> at 0x1c00-0x1cff, irq 11 (edge)
ahc0: on eisa0 slot 1
ahc0: aic7770 >= Rev E, SBLKCTL = 0x8
SSTAT0 = 0x0
SFUNCT = 0x0
Twin Channel, A SCSI Id=7, B SCSI Id=7, primary A, 4/255 SCBs
Not objected to by: gibbs
Diffstat (limited to 'sys/dev/aic7xxx')
-rw-r--r-- | sys/dev/aic7xxx/aic7xxx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c index 1d0d043..9a1cd69 100644 --- a/sys/dev/aic7xxx/aic7xxx.c +++ b/sys/dev/aic7xxx/aic7xxx.c @@ -36,7 +36,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.c,v 1.32 1999/08/16 22:49:28 gibbs Exp $ + * $Id: aic7xxx.c,v 1.33 1999/08/21 06:23:59 msmith Exp $ */ /* * A few notes on features of the driver. @@ -3865,9 +3865,11 @@ ahc_init(struct ahc_softc *ahc) size_t driver_data_size; u_int32_t physaddr; +#if 0 printf("SBLKCTL = 0x%x\n", ahc_inb(ahc, SBLKCTL)); printf("SSTAT0 = 0x%x\n", ahc_inb(ahc, SSTAT0)); printf("SFUNCT = 0x%x\n", ahc_inb(ahc, SFUNCT)); +#endif #ifdef AHC_PRINT_SRAM printf("Scratch Ram:"); for (i = 0x20; i < 0x5f; i++) { |