aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-03-02 18:47:38 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-03-02 18:47:38 +0000
commit6fee404efa0eec8f2b592173518d5f9ab685c81e (patch)
tree8fcdee01df302543351d7002bc564191b770c925 /sys/dev
parent5dfe609dd12c42754d3a2ee03e036b7ca4d5da07 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/acpica/acpi.c26
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[] = {