We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aaea6a commit 97e0341Copy full SHA for 97e0341
drivers/acpi/acpi_fpdt.c
@@ -220,8 +220,8 @@ static int fpdt_process_subtable(u64 address, u32 subtable_type)
220
break;
221
222
default:
223
- pr_err(FW_BUG "Invalid record %d found.\n", record_header->type);
224
- return -EINVAL;
+ /* Other types are reserved in ACPI 6.4 spec. */
+ break;
225
}
226
227
return 0;
@@ -254,8 +254,7 @@ static int __init acpi_init_fpdt(void)
254
subtable->type);
255
256
257
- pr_info(FW_BUG "Invalid subtable type %d found.\n",
258
- subtable->type);
259
260
261
offset += sizeof(*subtable);
0 commit comments