From 7d4936dc38c445a91ede162cb984e4a4e8da72b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20E=C3=9Fer?= Date: Sun, 31 Aug 1997 19:36:56 +0000 Subject: [PATCH] Remove debug printf() that had been ommited by accident. --- sys/pci/ncr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c index e642f3e99bef..2379741f8736 100644 --- a/sys/pci/ncr.c +++ b/sys/pci/ncr.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: ncr.c,v 1.105 1997/08/23 22:01:49 se Exp $ +** $Id: ncr.c,v 1.106 1997/08/31 19:35:52 se Exp $ ** ** Device driver for the NCR 53C810 PCI-SCSI-Controller. ** @@ -1340,7 +1340,7 @@ static void ncr_attach (pcici_t tag, int unit); static char ident[] = - "\n$Id: ncr.c,v 1.105 1997/08/23 22:01:49 se Exp $\n"; + "\n$Id: ncr.c,v 1.106 1997/08/31 19:35:52 se Exp $\n"; static const u_long ncr_version = NCR_VERSION * 11 + (u_long) sizeof (struct ncb) * 7 @@ -3538,7 +3538,6 @@ static void ncr_attach (pcici_t config_id, int unit) bzero (np, sizeof (*np)); np->ccb = (ccb_p) malloc (sizeof (struct ccb), M_DEVBUF, M_WAITOK); -printf ("CCB address = %p\n", np->ccb); if (!np->ccb) return; bzero (np->ccb, sizeof (*np->ccb));