diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-02-20 20:54:45 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-02-20 20:54:45 +0000 |
| commit | 263444cfbfe839364122db12047d90ffbde001f0 (patch) | |
| tree | fe84e49e8fed83b0535fa5e72d7341488cc6b288 /sys/dev/sab | |
| parent | f355124f7f1347e3f771c8d1d764ae4f387a4dfd (diff) | |
Notes
Diffstat (limited to 'sys/dev/sab')
| -rw-r--r-- | sys/dev/sab/sab.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/sab/sab.c b/sys/dev/sab/sab.c index 0540dcfcc4f8a..9218beed49844 100644 --- a/sys/dev/sab/sab.c +++ b/sys/dev/sab/sab.c @@ -1132,7 +1132,7 @@ sab_cnterm(struct consdev *cn) } static int -sab_cngetc(dev_t dev) +sab_cngetc(struct consdev *cn) { struct sabtty_softc *sc = sabtty_cons; @@ -1142,7 +1142,7 @@ sab_cngetc(dev_t dev) } static int -sab_cncheckc(dev_t dev) +sab_cncheckc(struct consdev *cn) { struct sabtty_softc *sc = sabtty_cons; @@ -1152,7 +1152,7 @@ sab_cncheckc(dev_t dev) } static void -sab_cnputc(dev_t dev, int c) +sab_cnputc(struct consdev *cn, int c) { struct sabtty_softc *sc = sabtty_cons; @@ -1162,7 +1162,7 @@ sab_cnputc(dev_t dev, int c) } static void -sab_cndbctl(dev_t dev, int c) +sab_cndbctl(struct consdev *cn, int c) { } |
