diff options
author | 2016-05-14 20:22:41 +0000 | |
---|---|---|
committer | 2016-05-14 20:22:41 +0000 | |
commit | 3e84add2702a93453fda42fb4b62e8634837e6a5 (patch) | |
tree | 8bdabdb3d6185cf69362980b5dc32a6e43e069af | |
parent | Add support for pwm fans. (diff) | |
download | wireguard-openbsd-3e84add2702a93453fda42fb4b62e8634837e6a5.tar.xz wireguard-openbsd-3e84add2702a93453fda42fb4b62e8634837e6a5.zip |
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) { |