summaryrefslogtreecommitdiffstats
path: root/sys/i4b/driver/i4b_rbch.c
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/i4b/driver/i4b_rbch.c
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/i4b/driver/i4b_rbch.c')
-rw-r--r--sys/i4b/driver/i4b_rbch.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/i4b/driver/i4b_rbch.c b/sys/i4b/driver/i4b_rbch.c
index 5738335..f44dcaf 100644
--- a/sys/i4b/driver/i4b_rbch.c
+++ b/sys/i4b/driver/i4b_rbch.c
@@ -166,7 +166,7 @@ i4brbchattach(void *dummy)
* open rbch device
*---------------------------------------------------------------------------*/
static int
-i4brbchopen(dev_t dev, int flag, int fmt, struct thread *td)
+i4brbchopen(struct cdev *dev, int flag, int fmt, struct thread *td)
{
int unit = minor(dev);
@@ -191,7 +191,7 @@ i4brbchopen(dev_t dev, int flag, int fmt, struct thread *td)
* close rbch device
*---------------------------------------------------------------------------*/
static int
-i4brbchclose(dev_t dev, int flag, int fmt, struct thread *td)
+i4brbchclose(struct cdev *dev, int flag, int fmt, struct thread *td)
{
int unit = minor(dev);
struct rbch_softc *sc = &rbch_softc[unit];
@@ -212,7 +212,7 @@ i4brbchclose(dev_t dev, int flag, int fmt, struct thread *td)
* read from rbch device
*---------------------------------------------------------------------------*/
static int
-i4brbchread(dev_t dev, struct uio *uio, int ioflag)
+i4brbchread(struct cdev *dev, struct uio *uio, int ioflag)
{
struct mbuf *m;
int error = 0;
@@ -314,7 +314,7 @@ i4brbchread(dev_t dev, struct uio *uio, int ioflag)
* write to rbch device
*---------------------------------------------------------------------------*/
static int
-i4brbchwrite(dev_t dev, struct uio * uio, int ioflag)
+i4brbchwrite(struct cdev *dev, struct uio * uio, int ioflag)
{
struct mbuf *m;
int error = 0;
@@ -432,7 +432,7 @@ i4brbchwrite(dev_t dev, struct uio * uio, int ioflag)
* rbch device ioctl handlibg
*---------------------------------------------------------------------------*/
static int
-i4brbchioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
+i4brbchioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
{
int error = 0;
int unit = minor(dev);
@@ -529,7 +529,7 @@ i4brbchioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
* device driver poll
*---------------------------------------------------------------------------*/
static int
-i4brbchpoll(dev_t dev, int events, struct thread *td)
+i4brbchpoll(struct cdev *dev, int events, struct thread *td)
{
int revents = 0; /* Events we found */
int s;
OpenPOWER on IntegriCloud