summaryrefslogtreecommitdiffstats
path: root/sys/isa/joy.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/isa/joy.c')
-rw-r--r--sys/isa/joy.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/isa/joy.c b/sys/isa/joy.c
index 5f6ca2e..9675e79 100644
--- a/sys/isa/joy.c
+++ b/sys/isa/joy.c
@@ -259,7 +259,7 @@ MOD_DEV (joy, LM_DT_CHAR, CDEV_MAJOR, &joy_cdevsw);
static struct isa_device dev = {0, &joydriver, IO_GAME, 0, -1, (caddr_t) 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0};
-int
+static int
joy_load (struct lkm_table *lkmtp, int cmd)
{
if (joyprobe (&dev)) {
@@ -273,22 +273,24 @@ joy_load (struct lkm_table *lkmtp, int cmd)
}
}
-int
+static int
joy_unload (struct lkm_table *lkmtp, int cmd)
{
uprintf ("Joystick driver unloaded\n");
return 0;
}
-int
+
+static int
joy_stat (struct lkm_table *lkmtp, int cmd)
{
return 0;
}
+
int
joy_mod (struct lkm_table *lkmtp, int cmd, int ver)
{
-#define _module joy_module
- DISPATCH(lkmtp, cmd, ver, joy_load, joy_unload, joy_stat);
+ MOD_DISPATCH(joy, lkmtp, cmd, ver,
+ joy_load, joy_unload, joy_stat);
}
#endif /* JOY_MODULE */
OpenPOWER on IntegriCloud