tweak some comments

This commit is contained in:
mrg 2002-12-28 02:47:35 +00:00
parent ca70f10e3b
commit 44b02011f4
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cd18xx.c,v 1.5 2002/10/23 09:13:13 jdolecek Exp $ */
/* $NetBSD: cd18xx.c,v 1.6 2002/12/28 02:47:35 mrg Exp $ */
/*
* Copyright (c) 1998, 2001 Matthew R. Green
@ -105,7 +105,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: cd18xx.c,v 1.5 2002/10/23 09:13:13 jdolecek Exp $");
__KERNEL_RCSID(0, "$NetBSD: cd18xx.c,v 1.6 2002/12/28 02:47:35 mrg Exp $");
#include <sys/param.h>
#include <sys/conf.h>
@ -158,7 +158,7 @@ const struct cdevsw cdtty_cdevsw = {
cdttystop, cdttytty, cdttypoll, nommap, ttykqfilter, D_TTY
};
static void cdtty_shutdown(struct cd18xx_softc *, struct cdtty_port*);
static void cdtty_shutdown(struct cd18xx_softc *, struct cdtty_port *);
static void cdttystart(struct tty *);
static int cdttyparam(struct tty *, struct termios *);
static void cdtty_break(struct cd18xx_softc *, struct cdtty_port *, int);
@ -359,7 +359,7 @@ cdtty_attach(sc, port)
}
/*
* below here are the tty portion device routines.
* cdtty_shutdown: called when the device is last closed.
*/
void
cdtty_shutdown(sc, p)
@ -468,7 +468,7 @@ cdttyopen(dev, flag, mode, p)
SET(t.c_cflag, MDMBUF);
/* Make sure param will see changes. */
tp->t_ospeed = 0;
tp->t_ospeed = 0; /* XXX set above ignored? */
(void)cdttyparam(tp, &t);
tp->t_iflag = TTYDEF_IFLAG;