aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/acpica/acpi.c
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2009-05-20 17:29:21 +0000
committerWarner Losh <imp@FreeBSD.org>2009-05-20 17:29:21 +0000
commit00b4e54ae7b69db140f2168049138a443fd3190f (patch)
tree57c7e52b00a944272cad04dc847cef00b88197de /sys/dev/acpica/acpi.c
parent4ab9c8af927629d232120e67a0e73e5f70cbf1b9 (diff)
downloadsrc-00b4e54ae7b69db140f2168049138a443fd3190f.tar.gz
src-00b4e54ae7b69db140f2168049138a443fd3190f.zip
We no longer need to use d_thread_t, migrate to struct thread *.
Notes
Notes: svn path=/head/; revision=192450
Diffstat (limited to 'sys/dev/acpica/acpi.c')
-rw-r--r--sys/dev/acpica/acpi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index d79b4133f0a9..4bc059b3c5df 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -3186,19 +3186,19 @@ acpi_deregister_ioctl(u_long cmd, acpi_ioctl_fn fn)
}
static int
-acpiopen(struct cdev *dev, int flag, int fmt, d_thread_t *td)
+acpiopen(struct cdev *dev, int flag, int fmt, struct thread *td)
{
return (0);
}
static int
-acpiclose(struct cdev *dev, int flag, int fmt, d_thread_t *td)
+acpiclose(struct cdev *dev, int flag, int fmt, struct thread *td)
{
return (0);
}
static int
-acpiioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, d_thread_t *td)
+acpiioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
{
struct acpi_softc *sc;
struct acpi_ioctl_hook *hp;