Module Name: src
Committed By: kenh
Date: Thu Nov 26 01:23:57 UTC 2009
Modified Files:
src/sys/dev/raidframe: rf_paritymap.c
Log Message:
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).
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/raidframe/rf_paritymap.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/dev/raidframe/rf_paritymap.c
diff -u src/sys/dev/raidframe/rf_paritymap.c:1.1 src/sys/dev/raidframe/rf_paritymap.c:1.2
--- src/sys/dev/raidframe/rf_paritymap.c:1.1 Tue Nov 17 18:54:26 2009
+++ src/sys/dev/raidframe/rf_paritymap.c Thu Nov 26 01:23:56 2009
@@ -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>