Drop a mistaken comma in the pr_info() args to prevent the build warning. ../drivers/acpi/acpi_fpdt.c: In function 'acpi_init_fpdt': ../include/linux/kern_levels.h:5:18: warning: too many arguments for format [-Wformat-extra-args] ../drivers/acpi/acpi_fpdt.c:255:4: note: in expansion of macro 'pr_info' pr_info(FW_BUG, "Invalid subtable type %d found.\n", Fixes: 208757d71098 ("ACPI: tables: introduce support for FPDT table") Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: "Rafael J. Wysocki" <rjw@xxxxxxxxxxxxx> Cc: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Cc: linux-acpi@xxxxxxxxxxxxxxx Cc: Zhang Rui <rui.zhang@xxxxxxxxx> --- drivers/acpi/acpi_fpdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20210128.orig/drivers/acpi/acpi_fpdt.c +++ linux-next-20210128/drivers/acpi/acpi_fpdt.c @@ -252,7 +252,7 @@ void acpi_init_fpdt(void) subtable->type); break; default: - pr_info(FW_BUG, "Invalid subtable type %d found.\n", + pr_info(FW_BUG "Invalid subtable type %d found.\n", subtable->type); return; }