summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorPatrick Tjin <pattjin@google.com>2017-12-05 14:55:14 -0800
committerMichael Bestas <mkbestas@lineageos.org>2019-12-23 23:43:35 +0200
commit5882ffdb0bd56533d392b2a7d058ad4888ac4e5f (patch)
tree68323455cd06839f19b8394fe37435b3e65ba88e /kernel
parent5963c396815ed1e42386f179c19f497d03fcf732 (diff)
PM: wakeup_reasons: Fix formatting for printk
current output looks like this: [ 133.772467] Abort: Wakeup IRQ 730 wdog-bark pending[ 133.777343] PM: suspend exit 2017-11-30 19:05:34.974168313 UTC Change it to this: [ 133.772467] Abort: Wakeup IRQ 730 wdog-bark pending [ 133.777343] PM: suspend exit 2017-11-30 19:05:34.974168313 UTC Change-Id: Ic38338a3274b83256788077db6f1040605b79603 Signed-off-by: Patrick Tjin <pattjin@google.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/power/wakeup_reason.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/power/wakeup_reason.c b/kernel/power/wakeup_reason.c
index 20d218a73cae..44d8da2952c5 100644
--- a/kernel/power/wakeup_reason.c
+++ b/kernel/power/wakeup_reason.c
@@ -161,7 +161,7 @@ static void print_wakeup_sources(void)
const struct list_head *wakeups;
if (suspend_abort) {
- pr_info("Abort: %s", abort_reason);
+ pr_info("Abort: %s\n", abort_reason);
return;
}