Skip to content

Commit

Permalink
ACPI, APEI, EINJ: fix malformed newline escape
Browse files Browse the repository at this point in the history
The pr_warn message has a malformed newline escape, add in the
missing \

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Colin Ian King authored and Rafael J. Wysocki committed Jan 31, 2017
1 parent 566cf87 commit d222678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/apei/einj.c
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ static int __init einj_init(void)

rc = einj_check_table(einj_tab);
if (rc) {
pr_warn(FW_BUG "Invalid EINJ table.n");
pr_warn(FW_BUG "Invalid EINJ table.\n");
return -EINVAL;
}

Expand Down

0 comments on commit d222678

Please sign in to comment.