utils.c (bf61c8840efe60fd8f91446860b63338fb424158) | utils.c (952c63e9512b63220886105cfc791507046fa39a) |
---|---|
1/* 2 * acpi_utils.c - ACPI Utility Functions ($Revision: 10 $) 3 * 4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> 5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> 6 * 7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 8 * --- 481 unchanged lines hidden (view full) --- 490 path = buffer.pointer; 491 492 printk("%sACPI: %s: %pV", level, path, &vaf); 493 494 va_end(args); 495 kfree(buffer.pointer); 496} 497EXPORT_SYMBOL(acpi_handle_printk); | 1/* 2 * acpi_utils.c - ACPI Utility Functions ($Revision: 10 $) 3 * 4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> 5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> 6 * 7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 8 * --- 481 unchanged lines hidden (view full) --- 490 path = buffer.pointer; 491 492 printk("%sACPI: %s: %pV", level, path, &vaf); 493 494 va_end(args); 495 kfree(buffer.pointer); 496} 497EXPORT_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 */ 506bool 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} 512EXPORT_SYMBOL(acpi_has_method); |
|