diff options
author | Jiang Liu <jiang.liu@huawei.com> | 2013-06-28 12:24:38 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-07-14 19:33:10 -0400 |
commit | 952c63e9512b63220886105cfc791507046fa39a (patch) | |
tree | bf3bd0592ea0fac74418fe16b8a4125e2db799ea /drivers/acpi/utils.c | |
parent | 472d963befe28b8614ea2789757b27536c8d79eb (diff) |
ACPI: introduce helper function acpi_has_method()
Introduce helper function acpi_has_method() and use it in a number
of places to simplify code.
[rjw: Changelog]
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/utils.c')
-rw-r--r-- | drivers/acpi/utils.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/acpi/utils.c b/drivers/acpi/utils.c index 744371304313..b08d97376f84 100644 --- a/drivers/acpi/utils.c +++ b/drivers/acpi/utils.c | |||
@@ -495,3 +495,18 @@ acpi_handle_printk(const char *level, acpi_handle handle, const char *fmt, ...) | |||
495 | kfree(buffer.pointer); | 495 | kfree(buffer.pointer); |
496 | } | 496 | } |
497 | EXPORT_SYMBOL(acpi_handle_printk); | 497 | EXPORT_SYMBOL(acpi_handle_printk); |
498 | |||
499 | /** | ||
500 | * acpi_has_method: Check whether @handle has a method named @name | ||
501 | * @handle: ACPI device handle | ||
502 | * @name: name of object or method | ||
503 | * | ||
504 | * Check whether @handle has a method named @name. | ||
505 | */ | ||
506 | bool acpi_has_method(acpi_handle handle, char *name) | ||
507 | { | ||
508 | acpi_handle tmp; | ||
509 | |||
510 | return ACPI_SUCCESS(acpi_get_handle(handle, name, &tmp)); | ||
511 | } | ||
512 | EXPORT_SYMBOL(acpi_has_method); | ||