summaryrefslogtreecommitdiffstats
path: root/sys/amd64/acpica/acpi_machdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/amd64/acpica/acpi_machdep.c')
-rw-r--r--sys/amd64/acpica/acpi_machdep.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/sys/amd64/acpica/acpi_machdep.c b/sys/amd64/acpica/acpi_machdep.c
index fbf649b..c0d8b91 100644
--- a/sys/amd64/acpica/acpi_machdep.c
+++ b/sys/amd64/acpica/acpi_machdep.c
@@ -64,19 +64,13 @@ static d_poll_t apmpoll;
#define CDEV_MAJOR 39
static struct cdevsw apm_cdevsw = {
- /* open */ apmopen,
- /* close */ apmclose,
- /* read */ noread,
- /* write */ apmwrite,
- /* ioctl */ apmioctl,
- /* poll */ apmpoll,
- /* mmap */ nommap,
- /* strategy */ nostrategy,
- /* name */ "apm",
- /* maj */ CDEV_MAJOR,
- /* dump */ nodump,
- /* psize */ nopsize,
- /* flags */ 0,
+ .d_open = apmopen,
+ .d_close = apmclose,
+ .d_write = apmwrite,
+ .d_ioctl = apmioctl,
+ .d_poll = apmpoll,
+ .d_name = "apm",
+ .d_maj = CDEV_MAJOR,
};
static int
OpenPOWER on IntegriCloud