summaryrefslogtreecommitdiff
path: root/source/components/resources
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2013-04-12 14:31:19 -0700
committerRobert Moore <Robert.Moore@intel.com>2013-04-12 14:31:19 -0700
commit9b46d42b758dd101c0333c3fed7974ab7d1e5028 (patch)
treef5437520a9971fa0096bce964d5c6ad03f9b7b82 /source/components/resources
parentf9c8728fda573246eaa2cdb40004febcaf4b37c5 (diff)
Add argument typechecking for all predefined ACPI names.
Fully implements typechecking on all incoming arguments for all predefined names. This ensures that ACPI-related drivers are passing the correct number of arguments, each of the correct object type. Argument counts are checked for the incoming arguments as well as for the actual ASL definition of the ACPI name itself (it must match the ACPI specification).
Diffstat (limited to 'source/components/resources')
-rw-r--r--source/components/resources/rsutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/resources/rsutils.c b/source/components/resources/rsutils.c
index 642f32be1..110d19782 100644
--- a/source/components/resources/rsutils.c
+++ b/source/components/resources/rsutils.c
@@ -882,7 +882,7 @@ AcpiRsSetSrsMethodData (
}
Info->PrefixNode = Node;
- Info->Pathname = METHOD_NAME__SRS;
+ Info->RelativePathname = METHOD_NAME__SRS;
Info->Parameters = Args;
Info->Flags = ACPI_IGNORE_RETURN_VALUE;