summaryrefslogtreecommitdiffstats
path: root/sys/dev/cx
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2004-06-28 16:17:11 +0000
committerjhb <jhb@FreeBSD.org>2004-06-28 16:17:11 +0000
commit050c6affecf6111c053a87858ce26459aa2a3b99 (patch)
tree9ea4c49472403fd4898c11301a6afeaf84ddcc70 /sys/dev/cx
parentfb5ac405c909e5bc48430dc3f7de33dc7810d4df (diff)
downloadFreeBSD-src-050c6affecf6111c053a87858ce26459aa2a3b99.zip
FreeBSD-src-050c6affecf6111c053a87858ce26459aa2a3b99.tar.gz
- 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)
Diffstat (limited to 'sys/dev/cx')
-rw-r--r--sys/dev/cx/if_cx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c
index 7354bc2..0f3cb04 100644
--- a/sys/dev/cx/if_cx.c
+++ b/sys/dev/cx/if_cx.c
@@ -2873,7 +2873,7 @@ static int cx_modevent (module_t mod, int type, void *unused)
#if __FreeBSD_version < 500000
register_swi (SWI_TTY, cx_softintr);
#else
- swi_add(&tty_ithd, "tty:cx", cx_softintr, NULL, SWI_TTY, 0,
+ swi_add(&tty_ithd, "cx", cx_softintr, NULL, SWI_TTY, 0,
&cx_fast_ih);
#endif
break;
OpenPOWER on IntegriCloud