diff options
author | Bob Moore <robert.moore@intel.com> | 2016-03-23 21:39:58 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-04-04 21:53:32 -0400 |
commit | d8aa069a35b40150abb00658be91dcb284648a04 (patch) | |
tree | 167674d31094155ebb022935b6b2d423c44b8d63 /drivers/acpi | |
parent | 890b090ef5ab6f0a125b8668c49d734442333d3c (diff) |
ACPICA: Interpreter: Update some function headers, no functional change
ACPICA commit e068948f49eb61a78c211028976a174604c5644a
Fix some issues in the exutils.c file.
Link: https://github.com/acpica/acpica/commit/e068948f
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')
-rw-r--r-- | drivers/acpi/acpica/exutils.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/acpi/acpica/exutils.c b/drivers/acpi/acpica/exutils.c index 4d44bc1cb2ca..425f13372e68 100644 --- a/drivers/acpi/acpica/exutils.c +++ b/drivers/acpi/acpica/exutils.c | |||
@@ -301,8 +301,8 @@ static u32 acpi_ex_digits_needed(u64 value, u32 base) | |||
301 | * | 301 | * |
302 | * FUNCTION: acpi_ex_eisa_id_to_string | 302 | * FUNCTION: acpi_ex_eisa_id_to_string |
303 | * | 303 | * |
304 | * PARAMETERS: compressed_id - EISAID to be converted | 304 | * PARAMETERS: out_string - Where to put the converted string (8 bytes) |
305 | * out_string - Where to put the converted string (8 bytes) | 305 | * compressed_id - EISAID to be converted |
306 | * | 306 | * |
307 | * RETURN: None | 307 | * RETURN: None |
308 | * | 308 | * |
@@ -354,7 +354,7 @@ void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id) | |||
354 | * possible 64-bit integer. | 354 | * possible 64-bit integer. |
355 | * value - Value to be converted | 355 | * value - Value to be converted |
356 | * | 356 | * |
357 | * RETURN: None, string | 357 | * RETURN: Converted string in out_string |
358 | * | 358 | * |
359 | * DESCRIPTION: Convert a 64-bit integer to decimal string representation. | 359 | * DESCRIPTION: Convert a 64-bit integer to decimal string representation. |
360 | * Assumes string buffer is large enough to hold the string. The | 360 | * Assumes string buffer is large enough to hold the string. The |
@@ -384,9 +384,9 @@ void acpi_ex_integer_to_string(char *out_string, u64 value) | |||
384 | * FUNCTION: acpi_ex_pci_cls_to_string | 384 | * FUNCTION: acpi_ex_pci_cls_to_string |
385 | * | 385 | * |
386 | * PARAMETERS: out_string - Where to put the converted string (7 bytes) | 386 | * PARAMETERS: out_string - Where to put the converted string (7 bytes) |
387 | * PARAMETERS: class_code - PCI class code to be converted (3 bytes) | 387 | * class_code - PCI class code to be converted (3 bytes) |
388 | * | 388 | * |
389 | * RETURN: None | 389 | * RETURN: Converted string in out_string |
390 | * | 390 | * |
391 | * DESCRIPTION: Convert 3-bytes PCI class code to string representation. | 391 | * DESCRIPTION: Convert 3-bytes PCI class code to string representation. |
392 | * Return buffer must be large enough to hold the string. The | 392 | * Return buffer must be large enough to hold the string. The |
@@ -417,7 +417,7 @@ void acpi_ex_pci_cls_to_string(char *out_string, u8 class_code[3]) | |||
417 | * | 417 | * |
418 | * PARAMETERS: space_id - ID to be validated | 418 | * PARAMETERS: space_id - ID to be validated |
419 | * | 419 | * |
420 | * RETURN: TRUE if valid/supported ID. | 420 | * RETURN: TRUE if space_id is a valid/supported ID. |
421 | * | 421 | * |
422 | * DESCRIPTION: Validate an operation region space_ID. | 422 | * DESCRIPTION: Validate an operation region space_ID. |
423 | * | 423 | * |