summaryrefslogtreecommitdiff
path: root/sys/arch/arm64
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2017-09-08 05:36:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2017-09-08 05:36:54 +0000
commitd57c7d7b30add2ecd463f68aef3651ef7bca7eb7 (patch)
tree57cbf3ade2a9c95a25842cb657179cb4f8c78a82 /sys/arch/arm64
parent52b7fef1a1e427e7790b90eb2733372c2c8575ba (diff)
If you use sys/param.h, you don't need sys/types.h
Diffstat (limited to 'sys/arch/arm64')
-rw-r--r--sys/arch/arm64/arm64/ast.c4
-rw-r--r--sys/arch/arm64/arm64/intr.c5
-rw-r--r--sys/arch/arm64/arm64/machdep.c3
-rw-r--r--sys/arch/arm64/stand/efiboot/conf.c3
4 files changed, 5 insertions, 10 deletions
diff --git a/sys/arch/arm64/arm64/ast.c b/sys/arch/arm64/arm64/ast.c
index d00087021b0..240d6cc5355 100644
--- a/sys/arch/arm64/arm64/ast.c
+++ b/sys/arch/arm64/arm64/ast.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ast.c,v 1.3 2017/04/29 17:07:09 kettenis Exp $ */
+/* $OpenBSD: ast.c,v 1.4 2017/09/08 05:36:51 deraadt Exp $ */
/*
* Copyright (c) 2015 Dale Rahn <drahn@dalerahn.com>
*
@@ -15,8 +15,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/types.h>
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
diff --git a/sys/arch/arm64/arm64/intr.c b/sys/arch/arm64/arm64/intr.c
index 61b19dad0bd..e34e4e120fd 100644
--- a/sys/arch/arm64/arm64/intr.c
+++ b/sys/arch/arm64/arm64/intr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.c,v 1.7 2017/03/09 14:23:59 kettenis Exp $ */
+/* $OpenBSD: intr.c,v 1.8 2017/09/08 05:36:51 deraadt Exp $ */
/*
* Copyright (c) 2011 Dale Rahn <drahn@openbsd.org>
*
@@ -15,9 +15,8 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/types.h>
-#include <sys/systm.h>
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/timetc.h>
#include <sys/malloc.h>
diff --git a/sys/arch/arm64/arm64/machdep.c b/sys/arch/arm64/arm64/machdep.c
index 18ba1eaf47a..db259e9c265 100644
--- a/sys/arch/arm64/arm64/machdep.c
+++ b/sys/arch/arm64/arm64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.21 2017/08/27 12:42:22 kettenis Exp $ */
+/* $OpenBSD: machdep.c,v 1.22 2017/09/08 05:36:51 deraadt Exp $ */
/*
* Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
*
@@ -15,7 +15,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/types.h>
#include <sys/param.h>
#include <sys/timetc.h>
#include <sys/sched.h>
diff --git a/sys/arch/arm64/stand/efiboot/conf.c b/sys/arch/arm64/stand/efiboot/conf.c
index e3e3d974907..0fa040972e6 100644
--- a/sys/arch/arm64/stand/efiboot/conf.c
+++ b/sys/arch/arm64/stand/efiboot/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.8 2017/08/23 18:03:54 kettenis Exp $ */
+/* $OpenBSD: conf.c,v 1.9 2017/09/08 05:36:51 deraadt Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -27,7 +27,6 @@
*/
#include <sys/param.h>
-#include <sys/types.h>
#include <lib/libsa/stand.h>
#include <lib/libsa/ufs.h>
#include <dev/cons.h>