summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound/isa
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/sound/isa')
-rw-r--r--sys/dev/sound/isa/emu8000.c6
-rw-r--r--sys/dev/sound/isa/gusmidi.c4
-rw-r--r--sys/dev/sound/isa/mpu.c2
-rw-r--r--sys/dev/sound/isa/opl.c6
-rw-r--r--sys/dev/sound/isa/sb16.c2
-rw-r--r--sys/dev/sound/isa/uartsio.c2
6 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/sound/isa/emu8000.c b/sys/dev/sound/isa/emu8000.c
index 7067a8f..ea434e6 100644
--- a/sys/dev/sound/isa/emu8000.c
+++ b/sys/dev/sound/isa/emu8000.c
@@ -743,19 +743,19 @@ emupnp_attach(device_t dev)
}
static int
-emu_open(dev_t i_dev, int flags, int mode, struct proc *p)
+emu_open(dev_t i_dev, int flags, int mode, struct thread *td)
{
return (0);
}
static int
-emu_close(dev_t i_dev, int flags, int mode, struct proc *p)
+emu_close(dev_t i_dev, int flags, int mode, struct thread *td)
{
return (0);
}
static int
-emu_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct proc *p)
+emu_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
diff --git a/sys/dev/sound/isa/gusmidi.c b/sys/dev/sound/isa/gusmidi.c
index 88193bf..797d168 100644
--- a/sys/dev/sound/isa/gusmidi.c
+++ b/sys/dev/sound/isa/gusmidi.c
@@ -214,7 +214,7 @@ gusmidi_init(device_t dev)
}
static int
-gusmidi_open(dev_t i_dev, int flags, int mode, struct proc *p)
+gusmidi_open(dev_t i_dev, int flags, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
@@ -242,7 +242,7 @@ gusmidi_open(dev_t i_dev, int flags, int mode, struct proc *p)
}
static int
-gusmidi_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct proc *p)
+gusmidi_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
diff --git a/sys/dev/sound/isa/mpu.c b/sys/dev/sound/isa/mpu.c
index a8cf490..14d1653 100644
--- a/sys/dev/sound/isa/mpu.c
+++ b/sys/dev/sound/isa/mpu.c
@@ -408,7 +408,7 @@ mpusbc_attach(device_t dev)
}
static int
-mpu_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct proc *p)
+mpu_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
diff --git a/sys/dev/sound/isa/opl.c b/sys/dev/sound/isa/opl.c
index a4a0e66..5ebf974 100644
--- a/sys/dev/sound/isa/opl.c
+++ b/sys/dev/sound/isa/opl.c
@@ -764,7 +764,7 @@ oplsbc_attach(device_t dev)
}
static int
-opl_open(dev_t i_dev, int flags, int mode, struct proc *p)
+opl_open(dev_t i_dev, int flags, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
@@ -805,7 +805,7 @@ opl_open(dev_t i_dev, int flags, int mode, struct proc *p)
}
static int
-opl_close(dev_t i_dev, int flags, int mode, struct proc *p)
+opl_close(dev_t i_dev, int flags, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
@@ -838,7 +838,7 @@ opl_close(dev_t i_dev, int flags, int mode, struct proc *p)
}
static int
-opl_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct proc *p)
+opl_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
diff --git a/sys/dev/sound/isa/sb16.c b/sys/dev/sound/isa/sb16.c
index cfc2363..53c4242 100644
--- a/sys/dev/sound/isa/sb16.c
+++ b/sys/dev/sound/isa/sb16.c
@@ -150,7 +150,7 @@ sb_dspwr(struct sb_info *sb, u_char val)
}
}
#if __FreeBSD_version > 500000
- if (curproc->p_intr_nesting_level == 0)
+ if (curthread->td_intr_nesting_level == 0)
printf("sb_dspwr(0x%02x) timed out.\n", val);
#endif
return 0;
diff --git a/sys/dev/sound/isa/uartsio.c b/sys/dev/sound/isa/uartsio.c
index 297e986..3577ce5 100644
--- a/sys/dev/sound/isa/uartsio.c
+++ b/sys/dev/sound/isa/uartsio.c
@@ -261,7 +261,7 @@ uartsio_attach(device_t dev)
}
static int
-uartsio_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct proc *p)
+uartsio_ioctl(dev_t i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td)
{
sc_p scp;
mididev_info *devinfo;
OpenPOWER on IntegriCloud