diff options
author | Jan Klemkow <jan@cvs.openbsd.org> | 2021-09-01 16:10:40 +0000 |
---|---|---|
committer | Jan Klemkow <jan@cvs.openbsd.org> | 2021-09-01 16:10:40 +0000 |
commit | 7c648a178c8a3fc2a1e63b3fd99c359e610b2269 (patch) | |
tree | f025212e8505cffde6406a3bba30e9f4374cb8a9 /sys/arch/sparc64 | |
parent | 1006afd4e830c7d004b0f5cdcdca73ad382d8af4 (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.c | 4 |
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; |