diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-03-02 18:47:38 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-03-02 18:47:38 +0000 |
| commit | 6fee404efa0eec8f2b592173518d5f9ab685c81e (patch) | |
| tree | 8fcdee01df302543351d7002bc564191b770c925 /sys/dev | |
| parent | 5dfe609dd12c42754d3a2ee03e036b7ca4d5da07 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/acpica/acpi.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index 9da9e6dd30a9..13b516ccaf52 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -74,19 +74,19 @@ static d_ioctl_t acpiioctl; #define CDEV_MAJOR 152 static struct cdevsw acpi_cdevsw = { - acpiopen, - acpiclose, - noread, - nowrite, - acpiioctl, - nopoll, - nommap, - nostrategy, - "acpi", - CDEV_MAJOR, - nodump, - nopsize, - 0 + /* open */ acpiopen, + /* close */ acpiclose, + /* read */ noread, + /* write */ nowrite, + /* ioctl */ acpiioctl, + /* poll */ nopoll, + /* mmap */ nommap, + /* strategy */ nostrategy, + /* name */ "acpi", + /* maj */ CDEV_MAJOR, + /* dump */ nodump, + /* psize */ nopsize, + /* flags */ 0 }; static const char* sleep_state_names[] = { |
