diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-05-14 20:22:42 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-05-14 20:22:42 +0000 |
commit | 72769eea10bba9fa868e0a7e599bf442536a7b8d (patch) | |
tree | 2aefdebdc735a4b7cc4d16668fc3de79693948aa | |
parent | 6c64804846fad4e9d06232a0f5b144fb1b24f5c5 (diff) |
Fix typo; M_NOWAIT should be EX_NOWAIT. Fortunately this was harmless.
-rw-r--r-- | sys/arch/amd64/pci/pci_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/pci/pci_machdep.c b/sys/arch/amd64/pci/pci_machdep.c index 6ce0ce4961e..2d18122d2ef 100644 --- a/sys/arch/amd64/pci/pci_machdep.c +++ b/sys/arch/amd64/pci/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.63 2016/05/04 14:30:00 kettenis Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.64 2016/05/14 20:22:41 kettenis Exp $ */ /* $NetBSD: pci_machdep.c,v 1.3 2003/05/07 21:33:58 fvdl Exp $ */ /*- @@ -756,7 +756,7 @@ pci_init_extents(void) NULL, 0, EX_NOWAIT | EX_FILLED); if (pciio_ex == NULL) return; - extent_free(pciio_ex, 0, 0x10000, M_NOWAIT); + extent_free(pciio_ex, 0, 0x10000, EX_NOWAIT); } if (pcimem_ex == NULL) { |