From ea2b5b8f72c56bde682593e783552eb13b7412ad Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 20 Oct 2009 21:46:20 +0200 Subject: Fix warnings * device/chario.c (ttypush): Set parameter type to void * instead of struct tty *, and implicitly cast the former into the latter instead. * i386/i386at/com.c: Include . (timeout, ttrstrt): Remove declarations. (comtimer): Add unused void * parameter. (comopen): Pass NULL to comtimer function. * i386/i386at/kd.h (kd_belloff): Add unused void * parameter. * i386/i386at/kd.c (timeout): Remove declaration. (kd_belloff): Add unused void * parameter. (feep, kdsetbell): Pass NULL to kd_belloff function. * i386/i386at/lpr.c: Include . (timeout, ttrstrt): Remove declarations. * kern/mach_clock.c (softclock, timeout, untimeout): Set parameter type of fcn function pointer to void * instead of char *. Set type of param to void * instead of char *. * kern/mach_clock.h (timer_elt): Set parameter type of fcn member to void * instead of char *. Set time of param member to void * instead of char *. (timeout): Set parameter type of fcn function pointer parameter to void * instead of char *. (untimeout): Likewise, set type of param parameter to void * instead of char *. * kern/sched_prim.c (sched_init): Remove cast of recompute_priorities. Replace (char *)0 with NULL. (thread_timeout): Set parameter type to void * instead of thread_t, and implicitly cast the former into the latter instead. (thread_timeout_setup): Remove cast of thread_timeout, cast thread_depress_timeout into (void (*) (void*)). Remove cast of thread. (thread_recompute_priorities): Add unused void * parameter. --- i386/i386at/com.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'i386/i386at/com.c') diff --git a/i386/i386at/com.c b/i386/i386at/com.c index 51f3ff1..bd5b989 100644 --- a/i386/i386at/com.c +++ b/i386/i386at/com.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include @@ -45,8 +46,6 @@ #include -extern void timeout(), ttrstrt(); - int comprobe(), comstart(), commctl(); void comstop(), comattach(), comintr(); static void comparam(); @@ -383,7 +382,7 @@ io_return_t comopen( if (!comtimer_active) { comtimer_active = TRUE; - comtimer(); + comtimer(NULL); } s = spltty(); @@ -664,7 +663,7 @@ comst_4++; int comtimer_interval = 5; void -comtimer() +comtimer(void * param) { spl_t s = spltty(); struct tty *tp = com_tty; -- cgit v1.2.3