diff options
author | Bob Moore <robert.moore@intel.com> | 2008-11-13 03:19:24 (GMT) |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-12-30 03:38:39 (GMT) |
commit | eeb4437e63c39ce19cf9b2de36a1dddbf12910c4 (patch) | |
tree | f8a03de090080a3a781a927ca13253774aebdfe7 /include/acpi/acnamesp.h | |
parent | a647b5c34047560d7efe7e53e756c6692ce67dc7 (diff) | |
download | linux-eeb4437e63c39ce19cf9b2de36a1dddbf12910c4.tar.xz |
ACPICA: Consolidate method arg count validation code
Merge the code that validates control method argument counts into
the predefined validation module. Eliminates possible multiple
warnings for incorrect counts.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/acnamesp.h')
-rw-r--r-- | include/acpi/acnamesp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/acpi/acnamesp.h b/include/acpi/acnamesp.h index db1e290..46cb5b4 100644 --- a/include/acpi/acnamesp.h +++ b/include/acpi/acnamesp.h @@ -182,6 +182,8 @@ acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info); */ acpi_status acpi_ns_check_predefined_names(struct acpi_namespace_node *node, + u32 user_param_count, + acpi_status return_status, union acpi_operand_object **return_object); const union acpi_predefined_info *acpi_ns_check_for_predefined_name(struct @@ -191,6 +193,7 @@ const union acpi_predefined_info *acpi_ns_check_for_predefined_name(struct void acpi_ns_check_parameter_count(char *pathname, struct acpi_namespace_node *node, + u32 user_param_count, const union acpi_predefined_info *info); /* |