ACPI: acpi_table_parse() should return handler's error code
authorBoris Ostrovsky <boris.ostrovsky@amd.com>
Tue, 5 Feb 2013 14:18:18 +0000 (15:18 +0100)
committerBoris Ostrovsky <boris.ostrovsky@amd.com>
Tue, 5 Feb 2013 14:18:18 +0000 (15:18 +0100)
Currently, the error code returned by acpi_table_parse()'s handler
is ignored. This patch will propagate handler's return value to
acpi_table_parse()'s caller.

Signed-off-by: Boris Ostrovsky <boris.ostrovsky@amd.com>
Committed-by: Jan Beulich <jbeulich@suse.com>
xen/drivers/acpi/tables.c

index d70ffecdde25dc2f0efaa49fb97afef95e5b7327..08e8f3bac44f82421ac8eb4565c2cf165ee1c72f 100644 (file)
@@ -265,7 +265,7 @@ acpi_table_parse_madt(enum acpi_madt_type id,
  * @handler: handler to run
  *
  * Scan the ACPI System Descriptor Table (STD) for a table matching @id,
- * run @handler on it.  Return 0 if table found, return on if not.
+ * run @handler on it.
  */
 int __init acpi_table_parse(char *id, acpi_table_handler handler)
 {
@@ -280,8 +280,7 @@ int __init acpi_table_parse(char *id, acpi_table_handler handler)
                acpi_get_table(id, 0, &table);
 
        if (table) {
-               handler(table);
-               return 0;
+               return handler(table);
        } else
                return 1;
 }