diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-10-09 20:39:26 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-10-09 20:39:26 +0000 |
| commit | 6b4d1b08a28e1a1054dcc5adba56d501494d7c2e (patch) | |
| tree | d648e77eb761d7cb359d008fd0b1232c37ac423d /sys/dev | |
| parent | 87e5d3610100e71ea20d162ba8f0bf6260d15090 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/acpica/acpi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index 5a7df119b956..29c17db23a19 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -1786,19 +1786,19 @@ acpi_deregister_ioctl(u_long cmd, int (* fn)(u_long cmd, caddr_t addr, void *arg } static int -acpiopen(dev_t dev, int flag, int fmt, struct thread *td) +acpiopen(dev_t dev, int flag, int fmt, d_thread_t *td) { return(0); } static int -acpiclose(dev_t dev, int flag, int fmt, struct thread *td) +acpiclose(dev_t dev, int flag, int fmt, d_thread_t *td) { return(0); } static int -acpiioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct thread *td) +acpiioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, d_thread_t *td) { struct acpi_softc *sc; struct acpi_ioctl_hook *hp; |
