summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorpooka <pooka@NetBSD.org>2008-07-21 10:40:37 +0000
committerpooka <pooka@NetBSD.org>2008-07-21 10:40:37 +0000
commit4a0d2098e796cd43d4ab46f857b4ebc772e8ceb5 (patch)
tree211475f6c38a2da99349d4f3a2d85fabffb4fca1 /sys/dev
parent1aa0a071e2124045c37a1f585da6bac1ed378679 (diff)
Repeat after me: do not pollute sys with #ifdef _RUMPKERNEL
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/putter/putter.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/putter/putter.c b/sys/dev/putter/putter.c
index 7f40cb37e91..46a5ed54803 100644
--- a/sys/dev/putter/putter.c
+++ b/sys/dev/putter/putter.c
@@ -1,4 +1,4 @@
-/* $NetBSD: putter.c,v 1.14 2008/05/30 11:24:57 jmcneill Exp $ */
+/* $NetBSD: putter.c,v 1.15 2008/07/21 10:40:37 pooka Exp $ */
/*
* Copyright (c) 2006, 2007 Antti Kantee. All Rights Reserved.
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: putter.c,v 1.14 2008/05/30 11:24:57 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: putter.c,v 1.15 2008/07/21 10:40:37 pooka Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -613,7 +613,6 @@ get_pi_idx(struct putter_instance *pi_i)
return i;
}
-#ifndef _RUMPKERNEL
MODULE(MODULE_CLASS_MISC, putter, NULL);
static int
@@ -637,4 +636,3 @@ putter_modcmd(modcmd_t cmd, void *arg)
return ENOTTY;
#endif
}
-#endif /* !_RUMPKERNEL */