From 5516d3ac3601b66c6719788158411f9ca630240e Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Wed, 1 Feb 2023 13:55:12 -0500 Subject: [PATCH 45/52] mips: Avoid K&R-style definitions No functional change intended. --- sys/mips/mips/pmap_mips64.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/mips/mips/pmap_mips64.c b/sys/mips/mips/pmap_mips64.c index 197d0599ccb2..d20711e0af3a 100644 --- a/sys/mips/mips/pmap_mips64.c +++ b/sys/mips/mips/pmap_mips64.c @@ -5591,8 +5591,7 @@ pmap_pvdump(vm_offset_t pa) * and start over. ASID zero is reserved for kernel use. */ static void -pmap_asid_alloc(pmap) - pmap_t pmap; +pmap_asid_alloc(pmap_t pmap) { if (pmap->pm_asid[PCPU_GET(cpuid)].asid != PMAP_ASID_RESERVED && pmap->pm_asid[PCPU_GET(cpuid)].gen == PCPU_GET(asid_generation)); -- 2.41.0