diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2004-06-28 16:17:11 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2004-06-28 16:17:11 +0000 |
| commit | 3df6c4de7ede52ddc0ff33f75a760ffec8b735b2 (patch) | |
| tree | 9ea4c49472403fd4898c11301a6afeaf84ddcc70 /sys | |
| parent | e874bf6648fbe7337498d1f84effd80450f6f4c8 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/cx/if_cx.c | 2 | ||||
| -rw-r--r-- | sys/dev/cy/cy.c | 4 | ||||
| -rw-r--r-- | sys/dev/sio/sio.c | 4 | ||||
| -rw-r--r-- | sys/pc98/cbus/sio.c | 4 | ||||
| -rw-r--r-- | sys/pc98/pc98/sio.c | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c index 7354bc233082..0f3cb04bf2cb 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 3a1d26ed3dc8..0147c6e16373 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 0ecdef798cc5..552af42b0799 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); diff --git a/sys/pc98/cbus/sio.c b/sys/pc98/cbus/sio.c index 0e28e5db4ad5..7be51fedb412 100644 --- a/sys/pc98/cbus/sio.c +++ b/sys/pc98/cbus/sio.c @@ -1801,9 +1801,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); diff --git a/sys/pc98/pc98/sio.c b/sys/pc98/pc98/sio.c index 0e28e5db4ad5..7be51fedb412 100644 --- a/sys/pc98/pc98/sio.c +++ b/sys/pc98/pc98/sio.c @@ -1801,9 +1801,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); |
