aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/syscons
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2019-12-10 22:06:53 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2019-12-10 22:06:53 +0000
commit5773ac113c5c364ed1f0af12b97b2c3b058e1ee2 (patch)
treee55a42968af4af757de27ce13cb7cb4ce7bf4c4c /sys/dev/syscons
parenta8a03706fb01033b011bb795286f51444bab172d (diff)
Notes
Diffstat (limited to 'sys/dev/syscons')
-rw-r--r--sys/dev/syscons/syscons.c4
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;