diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-06-23 21:43:08 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-06-23 21:43:08 +0000 |
commit | 6e209e446297cd98b3dc8560cde22b455c8f1d6e (patch) | |
tree | 4fbcf45473eeda16054af2be5d471958f4ac366b /sys/dev | |
parent | 5e31f19a9c87b3468d34674b11470d6346e16e78 (diff) |
remove debug printf
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/ami_pci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pci/ami_pci.c b/sys/dev/pci/ami_pci.c index ced27cc1ca8..0810034d537 100644 --- a/sys/dev/pci/ami_pci.c +++ b/sys/dev/pci/ami_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ami_pci.c,v 1.6 2001/06/23 21:24:58 mickey Exp $ */ +/* $OpenBSD: ami_pci.c,v 1.7 2001/06/23 21:43:07 mickey Exp $ */ /* * Copyright (c) 2001 Michael Shalayeff @@ -127,7 +127,6 @@ ami_pci_match(parent, match, aux) return (0); for (pami = ami_pci_devices; pami->vendor; pami++) { - printf("%lx %lx\n", pci_conf_read(pa->pa_pc, pa->pa_tag, AMI_PCI_SIG) & 0xffff, AMI_SIGNATURE); if (pami->vendor == PCI_VENDOR(pa->pa_id) && pami->product == PCI_PRODUCT(pa->pa_id) && (!pami->flags & AMI_CHECK_SIGN || |