diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2019-12-10 22:06:53 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2019-12-10 22:06:53 +0000 |
| commit | 5773ac113c5c364ed1f0af12b97b2c3b058e1ee2 (patch) | |
| tree | e55a42968af4af757de27ce13cb7cb4ce7bf4c4c /sys/dev/syscons | |
| parent | a8a03706fb01033b011bb795286f51444bab172d (diff) | |
Notes
Diffstat (limited to 'sys/dev/syscons')
| -rw-r--r-- | sys/dev/syscons/syscons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index dc43c0d6306d..8c609d0e2ffe 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -199,7 +199,7 @@ static void sc_puts(scr_stat *scp, u_char *buf, int len); static void sccnupdate(scr_stat *scp); static scr_stat *alloc_scp(sc_softc_t *sc, int vty); static void init_scp(sc_softc_t *sc, int vty, scr_stat *scp); -static timeout_t scrn_timer; +static callout_func_t scrn_timer; static int and_region(int *s1, int *e1, int s2, int e2); static void scrn_update(scr_stat *scp, int show_cursor); @@ -232,7 +232,7 @@ static int save_kbd_state(scr_stat *scp); static int update_kbd_state(scr_stat *scp, int state, int mask); static int update_kbd_leds(scr_stat *scp, int which); static int sc_kattr(void); -static timeout_t blink_screen; +static callout_func_t blink_screen; static struct tty *sc_alloc_tty(int, int); static cn_probe_t sc_cnprobe; |
