diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-11-19 03:28:54 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-11-19 03:28:54 +0000 |
commit | 87e8efd22a63b80c03e4ec65ff4e712a7ff092fd (patch) | |
tree | a5d565181ac0843fda668ab904f4febc5f64b65b /sys | |
parent | 59fc07be283119a91a008815f8f1733c2defad52 (diff) |
Don't print PCI device info twice during attach.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/vga_pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c index 9b68e49d45f..bf6131a2b0a 100644 --- a/sys/dev/pci/vga_pci.c +++ b/sys/dev/pci/vga_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vga_pci.c,v 1.8 2000/11/15 20:17:38 aaron Exp $ */ +/* $OpenBSD: vga_pci.c,v 1.9 2000/11/19 03:28:53 aaron Exp $ */ /* $NetBSD: vga_pci.c,v 1.3 1998/06/08 06:55:58 thorpej Exp $ */ /* @@ -119,8 +119,7 @@ vga_pci_attach(parent, self, aux) sc->sc_pcitag = pa->pa_tag; pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo); - printf(": %s (rev. 0x%02x)\n", devinfo, - PCI_REVISION(pa->pa_class)); + printf("\n"); vga_common_attach(self, pa->pa_iot, pa->pa_memt, WSDISPLAY_TYPE_PCIVGA); |