diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-04-10 01:35:56 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-04-10 01:35:56 +0000 |
commit | ae8b0483dbf4c7520407bab46a41e05336e0f899 (patch) | |
tree | ca95dfbc4b96f97d5c8b54522ab51efb2fff099d /sys/dev/acpi/dsdt.c | |
parent | 544774105036bd144223e6ee478a376c9f0f3c3b (diff) |
Fix various glitches in queue macro usage.
ok millert@
Diffstat (limited to 'sys/dev/acpi/dsdt.c')
-rw-r--r-- | sys/dev/acpi/dsdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/dsdt.c b/sys/dev/acpi/dsdt.c index 94af4eb24d7..68c6237ccd5 100644 --- a/sys/dev/acpi/dsdt.c +++ b/sys/dev/acpi/dsdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.c,v 1.199 2013/02/09 20:56:35 miod Exp $ */ +/* $OpenBSD: dsdt.c,v 1.200 2013/04/10 01:35:55 guenther Exp $ */ /* * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> * @@ -380,7 +380,7 @@ struct aml_notify_data { SLIST_HEAD(aml_notify_head, aml_notify_data); struct aml_notify_head aml_notify_list = - LIST_HEAD_INITIALIZER(&aml_notify_list); + SLIST_HEAD_INITIALIZER(aml_notify_list); /* * @@@: Memory management functions |