diff options
Diffstat (limited to 'drivers/acpi/tables.c')
-rw-r--r-- | drivers/acpi/tables.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index c1ff58de99e9..6c0f0794aa82 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c | |||
@@ -268,7 +268,8 @@ acpi_parse_entries_array(char *id, unsigned long table_size, | |||
268 | for (i = 0; i < proc_num; i++) { | 268 | for (i = 0; i < proc_num; i++) { |
269 | if (entry->type != proc[i].id) | 269 | if (entry->type != proc[i].id) |
270 | continue; | 270 | continue; |
271 | if (!proc->handler || proc[i].handler(entry, table_end)) | 271 | if (!proc[i].handler || |
272 | proc[i].handler(entry, table_end)) | ||
272 | return -EINVAL; | 273 | return -EINVAL; |
273 | 274 | ||
274 | proc->count++; | 275 | proc->count++; |