summaryrefslogtreecommitdiffstats
path: root/drivers/misc/parport_share.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/misc/parport_share.c')
-rw-r--r--drivers/misc/parport_share.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/misc/parport_share.c b/drivers/misc/parport_share.c
index 91fb8b0dc..bc39b351c 100644
--- a/drivers/misc/parport_share.c
+++ b/drivers/misc/parport_share.c
@@ -1,4 +1,4 @@
-/* $Id: parport_share.c,v 1.9 1998/03/16 23:44:45 ralf Exp $
+/* $Id: parport_share.c,v 1.10 1998/03/18 06:32:19 ralf Exp $
* Parallel-port resource manager code.
*
* Authors: David Campbell <campbell@tirian.che.curtin.edu.au>
@@ -28,8 +28,8 @@
#include <asm/spinlock.h>
-#ifdef CONFIG_KERNELD
-#include <linux/kerneld.h>
+#ifdef CONFIG_KMOD
+#include <linux/kmod.h>
#endif
#undef PARPORT_PARANOID
@@ -44,14 +44,14 @@ void (*parport_probe_hook)(struct parport *port) = NULL;
/* Return a list of all the ports we know about. */
struct parport *parport_enumerate(void)
{
-#ifdef CONFIG_KERNELD
+#ifdef CONFIG_KMOD
if (portlist == NULL) {
request_module("parport_lowlevel");
#ifdef CONFIG_PNP_PARPORT_MODULE
request_module("parport_probe");
#endif /* CONFIG_PNP_PARPORT_MODULE */
}
-#endif /* CONFIG_KERNELD */
+#endif /* CONFIG_KMOD */
return portlist;
}