summaryrefslogtreecommitdiffstats
path: root/sys/dev/digi
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-06-16 09:47:26 +0000
committerphk <phk@FreeBSD.org>2004-06-16 09:47:26 +0000
commitdfd1f7fd50fffaf75541921fcf86454cd8eb3614 (patch)
tree624c885995e84df6decddd3291c60a15e50e3c85 /sys/dev/digi
parentcafb94bcea1cdf048e81b7eb2d24808e1a8c5280 (diff)
downloadFreeBSD-src-dfd1f7fd50fffaf75541921fcf86454cd8eb3614.zip
FreeBSD-src-dfd1f7fd50fffaf75541921fcf86454cd8eb3614.tar.gz
Do the dreaded s/dev_t/struct cdev */
Bump __FreeBSD_version accordingly.
Diffstat (limited to 'sys/dev/digi')
-rw-r--r--sys/dev/digi/digi.c10
-rw-r--r--sys/dev/digi/digi.h4
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/digi/digi.c b/sys/dev/digi/digi.c
index c6b6b2c..c330290 100644
--- a/sys/dev/digi/digi.c
+++ b/sys/dev/digi/digi.c
@@ -694,7 +694,7 @@ digimctl(struct digi_p *port, int bits, int how)
}
static int
-digiopen(dev_t dev, int flag, int mode, struct thread *td)
+digiopen(struct cdev *dev, int flag, int mode, struct thread *td)
{
struct digi_softc *sc;
struct tty *tp;
@@ -859,7 +859,7 @@ out:
}
static int
-digiclose(dev_t dev, int flag, int mode, struct thread *td)
+digiclose(struct cdev *dev, int flag, int mode, struct thread *td)
{
int mynor;
struct tty *tp;
@@ -938,7 +938,7 @@ digihardclose(struct digi_p *port)
}
static int
-digiread(dev_t dev, struct uio *uio, int flag)
+digiread(struct cdev *dev, struct uio *uio, int flag)
{
int mynor;
struct tty *tp;
@@ -964,7 +964,7 @@ digiread(dev_t dev, struct uio *uio, int flag)
}
static int
-digiwrite(dev_t dev, struct uio *uio, int flag)
+digiwrite(struct cdev *dev, struct uio *uio, int flag)
{
int mynor;
struct tty *tp;
@@ -1066,7 +1066,7 @@ digi_loadmoduledata(struct digi_softc *sc)
}
static int
-digiioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
+digiioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
{
int unit, pnum, mynor, error, s;
struct digi_softc *sc;
diff --git a/sys/dev/digi/digi.h b/sys/dev/digi/digi.h
index f0c9f0e..8459d60 100644
--- a/sys/dev/digi/digi.h
+++ b/sys/dev/digi/digi.h
@@ -72,7 +72,7 @@ struct digi_p {
volatile struct board_chan *bc;
struct tty *tp;
- dev_t dev[6];
+ struct cdev *dev[6];
u_char *txbuf;
u_char *rxbuf;
@@ -164,7 +164,7 @@ struct digi_softc {
int iorid;
void *irqHandler;
int unit;
- dev_t ctldev;
+ struct cdev *ctldev;
} res;
u_char *vmem; /* virtual memory address */
OpenPOWER on IntegriCloud