diff options
author | Bob Moore <robert.moore@intel.com> | 2012-12-30 19:05:17 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-01-10 06:36:19 -0500 |
commit | 04a81dce13c672757637b759039de216ed29a536 (patch) | |
tree | 06ce2b5dceb2f1b9cea0e480bb1676810c8f889e /drivers/acpi/acpica/psargs.c | |
parent | 528a412c86e7a831d0fd157cac65749b45b64e06 (diff) |
ACPICA: Eliminate some small unnecessary pathname functions.
Removed several small pathname functions to increase efficiency.
Essentially, they replace a function call with a single compare.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/psargs.c')
-rw-r--r-- | drivers/acpi/acpica/psargs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/psargs.c b/drivers/acpi/acpica/psargs.c index cb79e2d4d743..9f3189395f3a 100644 --- a/drivers/acpi/acpica/psargs.c +++ b/drivers/acpi/acpica/psargs.c | |||
@@ -162,7 +162,7 @@ char *acpi_ps_get_next_namestring(struct acpi_parse_state *parser_state) | |||
162 | 162 | ||
163 | /* Point past any namestring prefix characters (backslash or carat) */ | 163 | /* Point past any namestring prefix characters (backslash or carat) */ |
164 | 164 | ||
165 | while (acpi_ps_is_prefix_char(*end)) { | 165 | while (ACPI_IS_ROOT_PREFIX(*end) || ACPI_IS_PARENT_PREFIX(*end)) { |
166 | end++; | 166 | end++; |
167 | } | 167 | } |
168 | 168 | ||
@@ -798,7 +798,8 @@ acpi_ps_get_next_arg(struct acpi_walk_state *walk_state, | |||
798 | subop = acpi_ps_peek_opcode(parser_state); | 798 | subop = acpi_ps_peek_opcode(parser_state); |
799 | if (subop == 0 || | 799 | if (subop == 0 || |
800 | acpi_ps_is_leading_char(subop) || | 800 | acpi_ps_is_leading_char(subop) || |
801 | acpi_ps_is_prefix_char(subop)) { | 801 | ACPI_IS_ROOT_PREFIX(subop) || |
802 | ACPI_IS_PARENT_PREFIX(subop)) { | ||
802 | 803 | ||
803 | /* null_name or name_string */ | 804 | /* null_name or name_string */ |
804 | 805 | ||