diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-11-13 14:53:49 +0100 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2017-11-13 15:35:14 +0100 |
commit | 71192a688714079f75ba6631155581f028b0351f (patch) | |
tree | 728ae486ea6db4f19b260bb350e5b993bbff1875 | |
parent | irqchip/s3c24xx: pr_err() strings should end with newlines (diff) | |
download | linux-71192a688714079f75ba6631155581f028b0351f.tar.xz linux-71192a688714079f75ba6631155581f028b0351f.zip |
irqchip/gic-v3: pr_err() strings should end with newlines
pr_err() messages should end with a new-line to avoid other messages
being concatenated.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
-rw-r--r-- | drivers/irqchip/irq-gic-v3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c index 6f9d12b5ca27..16fddff38f22 100644 --- a/drivers/irqchip/irq-gic-v3.c +++ b/drivers/irqchip/irq-gic-v3.c @@ -1524,7 +1524,7 @@ gic_acpi_init(struct acpi_subtable_header *header, const unsigned long end) err = gic_validate_dist_version(acpi_data.dist_base); if (err) { - pr_err("No distributor detected at @%p, giving up", + pr_err("No distributor detected at @%p, giving up\n", acpi_data.dist_base); goto out_dist_unmap; } |