diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-12-25 20:41:46 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-27 00:00:50 +0100 |
commit | 84e0fb3f287864eca3a9322ef364b913f6a260bd (patch) | |
tree | 123333bce32a7d57c5112aa0d4c07b12821b6305 /device/chario.c | |
parent | 63eefc08b5e762937118254ad0b82583cc38a2d2 (diff) | |
download | gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.gz gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.bz2 gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.zip |
Fix some warnings with -Wmissing-prototypes.
Marked some functions as static (private) as needed and added missing
includes.
This also revealed some dead code which was removed.
Note that -Wmissing-prototypes is not enabled here since there is a
bunch more warnings.
Message-Id: <Y6j72lWRL9rsYy4j@mars>
Diffstat (limited to 'device/chario.c')
-rw-r--r-- | device/chario.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/device/chario.c b/device/chario.c index 0e9dd70b..64640981 100644 --- a/device/chario.c +++ b/device/chario.c @@ -230,7 +230,7 @@ boolean_t char_open_done( return TRUE; } -boolean_t tty_close_open_reply( +static boolean_t tty_close_open_reply( io_req_t ior) { ior->io_error = D_DEVICE_DOWN; @@ -366,7 +366,7 @@ boolean_t char_write_done( return TRUE; } -boolean_t tty_close_write_reply( +static boolean_t tty_close_write_reply( io_req_t ior) { ior->io_residual = ior->io_count; @@ -473,7 +473,7 @@ boolean_t char_read_done( return TRUE; } -boolean_t tty_close_read_reply( +static boolean_t tty_close_read_reply( io_req_t ior) { ior->io_residual = ior->io_count; @@ -524,7 +524,7 @@ void ttyclose( /* * Port-death routine to clean up reply messages. */ -boolean_t +static boolean_t tty_queue_clean( queue_t q, const ipc_port_t port, @@ -882,8 +882,7 @@ void tty_output( /* * Send any buffered recvd chars up to user */ -void ttypush( - void * _tp) +static void ttypush(void * _tp) { struct tty *tp = _tp; spl_t s = spltty(); |