diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-10-21 21:53:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-10-21 21:53:48 +0000 |
commit | 34f1b6e36972e5326ac7bce818b03933ffee7a19 (patch) | |
tree | df4d2b24b22505a0c468ae3cae1f7e6f0209e10d /sys/arch/arm64/include | |
parent | 325fea27bb3dab717d6604a27cb55bc3adb5e261 (diff) |
last argument to pmap_fault_fixup() is unused, delete it
noticed by kettenis
Diffstat (limited to 'sys/arch/arm64/include')
-rw-r--r-- | sys/arch/arm64/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm64/include/pmap.h b/sys/arch/arm64/include/pmap.h index bf12dbc001c..f3747e600d4 100644 --- a/sys/arch/arm64/include/pmap.h +++ b/sys/arch/arm64/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.13 2019/06/04 14:07:22 patrick Exp $ */ +/* $OpenBSD: pmap.h,v 1.14 2020/10/21 21:53:47 deraadt Exp $ */ /* * Copyright (c) 2008,2009,2014 Dale Rahn <drahn@dalerahn.com> * @@ -106,7 +106,7 @@ struct pv_entry; /* investigate */ #define pmap_unuse_final(p) do { /* nothing */ } while (0) -int pmap_fault_fixup(pmap_t, vaddr_t, vm_prot_t, int); +int pmap_fault_fixup(pmap_t, vaddr_t, vm_prot_t); void pmap_postinit(void); void pmap_map_early(paddr_t, psize_t); |