From 050c6affecf6111c053a87858ce26459aa2a3b99 Mon Sep 17 00:00:00 2001 From: jhb Date: Mon, 28 Jun 2004 16:17:11 +0000 Subject: - Shorten the names for the TTY related swi interrupt handlers as the 'tty:' prefix is largely redundant. - Fix the priority of the low-priority TTY SWIs that are hung off of the softclock thread. Submitted by: bde (2) --- sys/dev/sio/sio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/sio/sio.c') diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 0ecdef7..552af42 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -1132,9 +1132,9 @@ determined_type: ; printf("\n"); if (sio_fast_ih == NULL) { - swi_add(&tty_ithd, "tty:sio", siopoll, NULL, SWI_TTY, 0, + swi_add(&tty_ithd, "sio", siopoll, NULL, SWI_TTY, 0, &sio_fast_ih); - swi_add(&clk_ithd, "tty:sio", siopoll, NULL, SWI_TTY, 0, + swi_add(&clk_ithd, "sio", siopoll, NULL, SWI_CLOCK, 0, &sio_slow_ih); } minorbase = UNIT_TO_MINOR(unit); -- cgit v1.1