From owner-freebsd-current Thu May 16 09:33:21 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id JAA15200 for current-outgoing; Thu, 16 May 1996 09:33:21 -0700 (PDT) Received: from mail.rwth-aachen.de (mail.RWTH-Aachen.DE [137.226.144.9]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id JAA15194 for ; Thu, 16 May 1996 09:33:17 -0700 (PDT) Received: from gilberto.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de) by mail.rwth-aachen.de (PMDF V5.0-4 #13110) id <01I4S7KIBEHS00123F@mail.rwth-aachen.de> for freebsd-current@freefall.FreeBSD.org; Thu, 16 May 1996 18:31:30 +0100 Received: (from kuku@localhost) by gilberto.physik.rwth-aachen.de (8.6.11/8.6.9) id SAA14762 for freebsd-current@freefall.cdrom.com; Thu, 16 May 1996 18:38:34 +0200 Date: Thu, 16 May 1996 18:38:34 +0200 From: "Christoph P. Kukulies" Subject: patch to isa.c To: freebsd-current@freefall.FreeBSD.org Message-id: <199605161638.SAA14762@gilberto.physik.rwth-aachen.de> Content-transfer-encoding: 7BIT Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Around line 702 isa.c has an #ifdef DIAGNOSTIC block. A portion of this block contains printf("isa_dmastart: channel %d busy"..). The patch includes this printf also into the ifdefd passage. --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de *** isa.c Thu May 16 18:28:52 1996 --- /sys/i386/isa/isa.c Thu May 2 16:54:15 1996 *************** *** 702,711 **** if (dma_inuse & (1 << chan) == 0) printf("isa_dmastart: channel %d not acquired\n", chan); if (dma_busy & (1 << chan)) printf("isa_dmastart: channel %d busy\n", chan); - #endif dma_busy |= (1 << chan); --- 702,711 ---- if (dma_inuse & (1 << chan) == 0) printf("isa_dmastart: channel %d not acquired\n", chan); + #endif if (dma_busy & (1 << chan)) printf("isa_dmastart: channel %d busy\n", chan); dma_busy |= (1 << chan);