summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/cx/if_cx.c2
-rw-r--r--sys/dev/cy/cy.c4
-rw-r--r--sys/dev/sio/sio.c4
3 files changed, 5 insertions, 5 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;
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c
index 3a1d26e..0147c6e 100644
--- a/sys/dev/cy/cy.c
+++ b/sys/dev/cy/cy.c
@@ -554,9 +554,9 @@ cyattach_common(cy_iobase, cy_align)
splx(s);
if (sio_fast_ih == NULL) {
- swi_add(&tty_ithd, "tty:cy", siopoll, NULL, SWI_TTY, 0,
+ swi_add(&tty_ithd, "cy", siopoll, NULL, SWI_TTY, 0,
&sio_fast_ih);
- swi_add(&clk_ithd, "tty:cy", siopoll, NULL, SWI_TTY, 0,
+ swi_add(&clk_ithd, "cy", siopoll, NULL, SWI_CLOCK, 0,
&sio_slow_ih);
}
minorbase = UNIT_TO_MINOR(unit);
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);
OpenPOWER on IntegriCloud