summaryrefslogtreecommitdiffstats
path: root/sys/dev/syscons
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-06-04 20:04:52 +0000
committerphk <phk@FreeBSD.org>2004-06-04 20:04:52 +0000
commit06049d3eaf941ee534b340558daac059b6b18912 (patch)
treed6e215bcf253e083595c541ae5d094a1d2c280e4 /sys/dev/syscons
parentdb23e347ebdfd57136333ee5b06a73eb4fe8f2c0 (diff)
downloadFreeBSD-src-06049d3eaf941ee534b340558daac059b6b18912.zip
FreeBSD-src-06049d3eaf941ee534b340558daac059b6b18912.tar.gz
Manual edits to change linesw[]-frobbing to ttyld_*() calls.
Diffstat (limited to 'sys/dev/syscons')
-rw-r--r--sys/dev/syscons/sysmouse.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/syscons/sysmouse.c b/sys/dev/syscons/sysmouse.c
index 69c0ef3..ab1cd85 100644
--- a/sys/dev/syscons/sysmouse.c
+++ b/sys/dev/syscons/sysmouse.c
@@ -315,8 +315,7 @@ sysmouse_event(mouse_info_t *info)
/* buttons 4-10 */
buf[7] = (~mouse_status.button >> 3) & 0x7f;
for (i = MOUSE_MSC_PACKETSIZE; i < MOUSE_SYS_PACKETSIZE; ++i)
- (*linesw[sysmouse_tty->t_line].l_rint)(buf[i],
- sysmouse_tty);
+ ttyld_rint(sysmouse_tty, buf[i]);
}
return mouse_status.flags;
OpenPOWER on IntegriCloud