Module Name: src
Committed By: skrll
Date: Thu Sep 30 07:14:10 UTC 2021
Modified Files:
src/sys/kern: kern_hook.c
Log Message:
KNF
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/kern/kern_hook.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/kern/kern_hook.c
diff -u src/sys/kern/kern_hook.c:1.9 src/sys/kern/kern_hook.c:1.10
--- src/sys/kern/kern_hook.c:1.9 Thu Sep 30 01:26:07 2021
+++ src/sys/kern/kern_hook.c Thu Sep 30 07:14:09 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_hook.c,v 1.9 2021/09/30 01:26:07 yamaguchi Exp $ */
+/* $NetBSD: kern_hook.c,v 1.10 2021/09/30 07:14:09 skrll Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999, 2002, 2007, 2008 The NetBSD Foundation, Inc.
@@ -31,16 +31,16 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_hook.c,v 1.9 2021/09/30 01:26:07 yamaguchi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_hook.c,v 1.10 2021/09/30 07:14:09 skrll Exp $");
#include <sys/param.h>
-#include <sys/malloc.h>
-#include <sys/rwlock.h>
-#include <sys/systm.h>
+#include <sys/condvar.h>
#include <sys/device.h>
#include <sys/hook.h>
#include <sys/kmem.h>
-#include <sys/condvar.h>
+#include <sys/malloc.h>
+#include <sys/rwlock.h>
+#include <sys/systm.h>
/*
* A generic linear hook.