Use struct thread * directly instead of d_thread_t. This driver is not

likely to be merged back to stable/4.

Reviewed by:	delphij
This commit is contained in:
jhb 2015-01-05 19:49:20 +00:00
parent 0da0078579
commit a5005e88e5
2 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ static struct cdevsw tws_cdevsw = {
*/
int
tws_open(struct cdev *dev, int oflags, int devtype, d_thread_t *td)
tws_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
{
struct tws_softc *sc = dev->si_drv1;
@ -123,7 +123,7 @@ tws_open(struct cdev *dev, int oflags, int devtype, d_thread_t *td)
}
int
tws_close(struct cdev *dev, int fflag, int devtype, d_thread_t *td)
tws_close(struct cdev *dev, int fflag, int devtype, struct thread *td)
{
struct tws_softc *sc = dev->si_drv1;

View File

@ -41,7 +41,7 @@
int tws_ioctl(struct cdev *dev, long unsigned int cmd, caddr_t buf, int flags,
d_thread_t *proc);
struct thread *td);
void tws_passthru_complete(struct tws_request *req);
extern void tws_circular_aenq_insert(struct tws_softc *sc,
struct tws_circular_q *cq, struct tws_event_packet *aen);
@ -60,7 +60,7 @@ extern void tws_timeout(void *arg);
int
tws_ioctl(struct cdev *dev, u_long cmd, caddr_t buf, int flags,
d_thread_t *proc)
struct thread *td)
{
struct tws_softc *sc = (struct tws_softc *)(dev->si_drv1);
int error;