diff options
author | njl <njl@FreeBSD.org> | 2003-05-28 17:32:31 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-05-28 17:32:31 +0000 |
commit | 8a53967bf9606ca913c29d0c0066484d5e16e1c1 (patch) | |
tree | 7221ec00ee64223ec5617b4bafd00d50a856099b /sys/contrib | |
parent | ebca308bcf9ac3166782aebbd62660d175252227 (diff) | |
download | FreeBSD-src-8a53967bf9606ca913c29d0c0066484d5e16e1c1.zip FreeBSD-src-8a53967bf9606ca913c29d0c0066484d5e16e1c1.tar.gz |
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)
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/dev/acpica/nsalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/nsalloc.c b/sys/contrib/dev/acpica/nsalloc.c index e221973..35c329f 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) { |