summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authorkenh <kenh@NetBSD.org>2009-11-26 01:23:56 +0000
committerkenh <kenh@NetBSD.org>2009-11-26 01:23:56 +0000
commitb4bb3813efe4906cdd87268a62497faae4ed6560 (patch)
treed66fa751d68f9572b6281a4c0e350d60957ba9ec /sys/dev/raidframe
parentc37283eb1d39665a1d4ff8899b7ff01d6f8c0de8 (diff)
On the ARM platform, sys/param.h needs to be before sys/mutex.h, otherwise
sys/device.h will fail compilation (struct kmutex will not be defined completely).
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_paritymap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_paritymap.c b/sys/dev/raidframe/rf_paritymap.c
index 78c1263fcdf..49567b7df56 100644
--- a/sys/dev/raidframe/rf_paritymap.c
+++ b/sys/dev/raidframe/rf_paritymap.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_paritymap.c,v 1.1 2009/11/17 18:54:26 jld Exp $ */
+/* $NetBSD: rf_paritymap.c,v 1.2 2009/11/26 01:23:56 kenh Exp $ */
/*-
* Copyright (c) 2009 Jed Davis.
@@ -27,12 +27,12 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_paritymap.c,v 1.1 2009/11/17 18:54:26 jld Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_paritymap.c,v 1.2 2009/11/26 01:23:56 kenh Exp $");
#include <sys/callout.h>
#include <sys/kmem.h>
-#include <sys/mutex.h>
#include <sys/param.h>
+#include <sys/mutex.h>
#include <sys/rwlock.h>
#include <sys/systm.h>
#include <sys/types.h>