From 60378464bbe8c2b8840f9393178967edb1d90c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Schmidt?= Date: Sat, 30 Mar 2002 16:51:47 +0000 Subject: [PATCH] Remove debug output in last commit. --- sys/dev/ata/ata-all.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/sys/dev/ata/ata-all.c b/sys/dev/ata/ata-all.c index 813bb827f8e0..1dae0c45656c 100644 --- a/sys/dev/ata/ata-all.c +++ b/sys/dev/ata/ata-all.c @@ -548,16 +548,6 @@ ata_boot_attach(void) ad_attach(&ch->device[MASTER]); if (ch->devices & ATA_ATA_SLAVE) ad_attach(&ch->device[SLAVE]); - if (ctlr >= 2) { - u_int8_t id1, id2, fan; - - ata_drawersensor(&ch->device[MASTER], 1, 0x4e, 0); - id1 = ata_drawersensor(&ch->device[MASTER], 0, 0x4f, 0); - ata_drawersensor(&ch->device[MASTER], 1, 0x4e, 0x80); - id2 = ata_drawersensor(&ch->device[MASTER], 0, 0x4f, 0); - fan = ata_drawersensor(&ch->device[MASTER], 0, 0x28, 0); - printf("winbond ID 0x%02x 0x%02x 0x%02x\n", id1, id2, fan); - } } ata_raid_attach(); #endif