Module Name: src
Committed By: skrll
Date: Thu Sep 9 08:09:44 UTC 2021
Modified Files:
src/sys/arch/aarch64/aarch64: pmap.c
Log Message:
KNF
To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 src/sys/arch/aarch64/aarch64/pmap.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/aarch64/aarch64/pmap.c
diff -u src/sys/arch/aarch64/aarch64/pmap.c:1.108 src/sys/arch/aarch64/aarch64/pmap.c:1.109
--- src/sys/arch/aarch64/aarch64/pmap.c:1.108 Sat May 29 06:54:20 2021
+++ src/sys/arch/aarch64/aarch64/pmap.c Thu Sep 9 08:09:44 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.108 2021/05/29 06:54:20 skrll Exp $ */
+/* $NetBSD: pmap.c,v 1.109 2021/09/09 08:09:44 skrll Exp $ */
/*
* Copyright (c) 2017 Ryo Shimizu <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.108 2021/05/29 06:54:20 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.109 2021/09/09 08:09:44 skrll Exp $");
#include "opt_arm_debug.h"
#include "opt_ddb.h"
@@ -38,10 +38,11 @@ __KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.1
#include <sys/param.h>
#include <sys/types.h>
+
+#include <sys/asan.h>
+#include <sys/atomic.h>
#include <sys/kmem.h>
#include <sys/vmem.h>
-#include <sys/atomic.h>
-#include <sys/asan.h>
#include <uvm/uvm.h>
#include <uvm/pmap/pmap_pvt.h>