diff options
author | 2000-11-19 03:28:53 +0000 | |
---|---|---|
committer | 2000-11-19 03:28:53 +0000 | |
commit | b5ecfb198f432ecd824784e6f2043c8ee433ec68 (patch) | |
tree | 3f51e63b86575335e077a6f83bc2f412d81b54ff /sys/dev/pci/vga_pci.c | |
parent | PAGE_SIZE (and friends) does not change on alpha. (diff) | |
download | wireguard-openbsd-b5ecfb198f432ecd824784e6f2043c8ee433ec68.tar.xz wireguard-openbsd-b5ecfb198f432ecd824784e6f2043c8ee433ec68.zip |
Don't print PCI device info twice during attach.
Diffstat (limited to 'sys/dev/pci/vga_pci.c')
-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); |