From e7008a284eab826ab8cc8f3cdadd22a325c67196 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 10 Dec 1995 13:40:44 +0000 Subject: Staticize and cleanup. --- sys/isa/joy.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sys/isa/joy.c') diff --git a/sys/isa/joy.c b/sys/isa/joy.c index 99008ad..351c456 100644 --- a/sys/isa/joy.c +++ b/sys/isa/joy.c @@ -81,7 +81,8 @@ static struct { extern int timer0_max_count; -int joyprobe (struct isa_device *), joyattach (struct isa_device *); +static int joyprobe (struct isa_device *); +static int joyattach (struct isa_device *); struct isa_driver joydriver = {joyprobe, joyattach, "joy"}; @@ -99,7 +100,7 @@ static struct cdevsw joy_cdevsw = static int get_tick (); -int +static int joyprobe (struct isa_device *dev) { #ifdef WANT_JOYSTICK_CONNECTED @@ -111,7 +112,7 @@ joyprobe (struct isa_device *dev) #endif } -int +static int joyattach (struct isa_device *dev) { int unit = dev->id_unit; -- cgit v1.1