summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64
diff options
context:
space:
mode:
authorJan Klemkow <jan@cvs.openbsd.org>2021-09-01 16:10:40 +0000
committerJan Klemkow <jan@cvs.openbsd.org>2021-09-01 16:10:40 +0000
commit7c648a178c8a3fc2a1e63b3fd99c359e610b2269 (patch)
treef025212e8505cffde6406a3bba30e9f4374cb8a9 /sys/arch/sparc64
parent1006afd4e830c7d004b0f5cdcdca73ad382d8af4 (diff)
Use ttopen in tty drivers open functions as ttysleep string, as the others do.
ok patrick@
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r--sys/arch/sparc64/dev/sab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/sab.c b/sys/arch/sparc64/dev/sab.c
index dbd60d4f33c..a82f8fb73cd 100644
--- a/sys/arch/sparc64/dev/sab.c
+++ b/sys/arch/sparc64/dev/sab.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sab.c,v 1.37 2019/10/12 15:55:31 cheloha Exp $ */
+/* $OpenBSD: sab.c,v 1.38 2021/09/01 16:10:39 jan Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
@@ -732,7 +732,7 @@ sabttyopen(dev, flags, mode, p)
tp->t_state |= TS_WOPEN;
error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH,
- "sabttycd");
+ ttopen);
if (error != 0) {
splx(s);
tp->t_state &= ~TS_WOPEN;