diff options
author | 2002-03-27 20:54:42 +0000 | |
---|---|---|
committer | 2002-03-27 20:54:42 +0000 | |
commit | 3d8df0d02269bebf0586c00b598abd79ab0c14bd (patch) | |
tree | 2107c2d88ec4f817b4c89ffecdfea2e2728e15dc | |
parent | Fix write() loop in ttflush(). Pointed out by vincent@ (diff) | |
download | wireguard-openbsd-3d8df0d02269bebf0586c00b598abd79ab0c14bd.tar.xz wireguard-openbsd-3d8df0d02269bebf0586c00b598abd79ab0c14bd.zip |
tsk tsk tsk, compile it first.
-rw-r--r-- | sys/arch/macppc/pci/vgafb_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/pci/vgafb_pci.c b/sys/arch/macppc/pci/vgafb_pci.c index 0488a7b2186..7b2aaa9f27d 100644 --- a/sys/arch/macppc/pci/vgafb_pci.c +++ b/sys/arch/macppc/pci/vgafb_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vgafb_pci.c,v 1.5 2002/03/27 15:26:11 jason Exp $ */ +/* $OpenBSD: vgafb_pci.c,v 1.6 2002/03/27 20:54:42 drahn Exp $ */ /* $NetBSD: vga_pci.c,v 1.4 1996/12/05 01:39:38 cgd Exp $ */ /* @@ -111,7 +111,7 @@ vgafb_pci_probe(pa, id, ioaddr, iosize, memaddr, memsize, cacheable, mmioaddr, m #endif /* need to check more than just two base addresses? */ if (PCI_MAPREG_TYPE(pci_conf_read(pc, pa->pa_tag, i)) == - PCI_MAPREG_TYPE_IO) + PCI_MAPREG_TYPE_IO) { retval = pci_io_find(pc, pa->pa_tag, i, &addr, &size); if (retval) { |