diff options
author | imp <imp@FreeBSD.org> | 2009-05-20 17:29:21 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2009-05-20 17:29:21 +0000 |
commit | 3ca3ea71908ddf43687ac7777906573c31fea480 (patch) | |
tree | 57c7e52b00a944272cad04dc847cef00b88197de /sys/dev/ciss/ciss.c | |
parent | 033485e00c6bc9bfdac65bf91b70df092b730e27 (diff) | |
download | FreeBSD-src-3ca3ea71908ddf43687ac7777906573c31fea480.zip FreeBSD-src-3ca3ea71908ddf43687ac7777906573c31fea480.tar.gz |
We no longer need to use d_thread_t, migrate to struct thread *.
Diffstat (limited to 'sys/dev/ciss/ciss.c')
-rw-r--r-- | sys/dev/ciss/ciss.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c index f2b89f8..93aea72 100644 --- a/sys/dev/ciss/ciss.c +++ b/sys/dev/ciss/ciss.c @@ -4442,7 +4442,7 @@ ciss_name_command_status(int status) * Handle an open on the control device. */ static int -ciss_open(struct cdev *dev, int flags, int fmt, d_thread_t *p) +ciss_open(struct cdev *dev, int flags, int fmt, struct thread *p) { struct ciss_softc *sc; @@ -4462,7 +4462,7 @@ ciss_open(struct cdev *dev, int flags, int fmt, d_thread_t *p) * Handle the last close on the control device. */ static int -ciss_close(struct cdev *dev, int flags, int fmt, d_thread_t *p) +ciss_close(struct cdev *dev, int flags, int fmt, struct thread *p) { struct ciss_softc *sc; @@ -4483,7 +4483,7 @@ ciss_close(struct cdev *dev, int flags, int fmt, d_thread_t *p) * simplify the porting of Compaq's userland tools. */ static int -ciss_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int32_t flag, d_thread_t *p) +ciss_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *p) { struct ciss_softc *sc; IOCTL_Command_struct *ioc = (IOCTL_Command_struct *)addr; |