summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-02-21 20:41:11 +0000
committerphk <phk@FreeBSD.org>2004-02-21 20:41:11 +0000
commitfcf7e634fb12f16e5d5a0b3ee3cfafda001a303c (patch)
treeb4c7c5f55a2681dc99feaf813fae3d32fabd502e /sys/ia64
parent32b7c9a433930842533064d829ba214aadf6a67d (diff)
downloadFreeBSD-src-fcf7e634fb12f16e5d5a0b3ee3cfafda001a303c.zip
FreeBSD-src-fcf7e634fb12f16e5d5a0b3ee3cfafda001a303c.tar.gz
Device megapatch 3/6:
Add missing D_TTY flags to various drivers. Complete asserts that dev_t's passed to ttyread(), ttywrite(), ttypoll() and ttykqwrite() have (d_flags & D_TTY) and a struct tty pointer. Make ttyread(), ttywrite(), ttypoll() and ttykqwrite() the default cdevsw methods for D_TTY drivers and remove the explicit initializations in various drivers cdevsw structures.
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/ssc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/ia64/ia64/ssc.c b/sys/ia64/ia64/ssc.c
index 551ff0b..1f21be1 100644
--- a/sys/ia64/ia64/ssc.c
+++ b/sys/ia64/ia64/ssc.c
@@ -60,11 +60,9 @@ static d_ioctl_t sscioctl;
static struct cdevsw ssc_cdevsw = {
.d_open = sscopen,
.d_close = sscclose,
- .d_read = ttyread,
- .d_write = ttywrite,
.d_ioctl = sscioctl,
- .d_poll = ttypoll,
.d_name = "ssc",
+ .d_flags = D_TTY,
};
static struct tty *ssc_tp = NULL;
OpenPOWER on IntegriCloud