summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2003-05-28 17:32:31 +0000
committerNate Lawson <njl@FreeBSD.org>2003-05-28 17:32:31 +0000
commitd0e9cc3b3a91d37babe6ed64a12a8e311bad0cfb (patch)
tree7221ec00ee64223ec5617b4bafd00d50a856099b
parent006b3ddb51d96b01985505c8cac9c3cfec5cc5f4 (diff)
downloadsrc-test2-d0e9cc3b3a91d37babe6ed64a12a8e311bad0cfb.tar.gz
src-test2-d0e9cc3b3a91d37babe6ed64a12a8e311bad0cfb.zip
Revert to using TABLE_ID_DSDT as the default. It looks like the dynamic
ID allocation is not there yet. This fixes a few warnings about \_OS_ not being found and an S3 freeze for one user. Re-staticize AcpiNsRemoveReference() since it is not needed elsewhere. Approved by: re (scottl)
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=115367
-rw-r--r--sys/contrib/dev/acpica/nsalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/nsalloc.c b/sys/contrib/dev/acpica/nsalloc.c
index e221973dc25c..35c329f7f96d 100644
--- a/sys/contrib/dev/acpica/nsalloc.c
+++ b/sys/contrib/dev/acpica/nsalloc.c
@@ -321,7 +321,7 @@ AcpiNsInstallNode (
ACPI_NAMESPACE_NODE *Node, /* New Child*/
ACPI_OBJECT_TYPE Type)
{
- UINT16 OwnerId = 0;
+ UINT16 OwnerId = TABLE_ID_DSDT;
ACPI_NAMESPACE_NODE *ChildNode;
#ifdef ACPI_ALPHABETIC_NAMESPACE
@@ -652,7 +652,7 @@ AcpiNsDeleteNamespaceSubtree (
*
******************************************************************************/
-void
+static void
AcpiNsRemoveReference (
ACPI_NAMESPACE_NODE *Node)
{