summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoruebayasi <uebayasi@NetBSD.org>2010-11-13 13:51:57 +0000
committeruebayasi <uebayasi@NetBSD.org>2010-11-13 13:51:57 +0000
commit8184d5dc03eacfd0e7a669e4d7e8fddefc529123 (patch)
treed42dd22f8ecb74026b89176d901d7d81849430a4 /sys/dev/raidframe
parent6ce2506403cd7699eca3499e4ef9e53ee83cee6d (diff)
Don't pull in the whole uvm(9) API to access only PAGE_SIZE and
some other constants. These are provided by sys/param.h now.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_general.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_general.h b/sys/dev/raidframe/rf_general.h
index 829c3e7653c..451aa71b5c0 100644
--- a/sys/dev/raidframe/rf_general.h
+++ b/sys/dev/raidframe/rf_general.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_general.h,v 1.17 2006/04/14 22:40:09 christos Exp $ */
+/* $NetBSD: rf_general.h,v 1.18 2010/11/13 13:52:10 uebayasi Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -42,7 +42,6 @@
/* error reporting and handling */
#include <sys/systm.h> /* printf, sprintf, and friends */
-#include <uvm/uvm_extern.h> /* PAGE_SIZE, PAGE_MASK */
#define RF_ERRORMSG(s) printf((s))
#define RF_ERRORMSG1(s,a) printf((s),(a))