diff options
| author | Nathan Chancellor <natechancellor@gmail.com> | 2017-02-22 18:46:16 -0700 |
|---|---|---|
| committer | Mister Oyster <oysterized@gmail.com> | 2017-12-18 23:28:52 +0100 |
| commit | 5ef0bc3d132c52f7e67247c4f1af10e3f7d42ace (patch) | |
| tree | c11a68965e4692f75f56f0c13842e2dcec920026 /kernel/power | |
| parent | e232f55837ebc1b85840fa7833f8c022e469cc72 (diff) | |
log: Initial dmesg pruning
These are all of the annoying messages on just the stock kernel...
More to follow in future patches!
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: Mister Oyster <oysterized@gmail.com>
Diffstat (limited to 'kernel/power')
| -rw-r--r-- | kernel/power/wakeup_reason.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/power/wakeup_reason.c b/kernel/power/wakeup_reason.c index 252611fad..bf091a04a 100644 --- a/kernel/power/wakeup_reason.c +++ b/kernel/power/wakeup_reason.c @@ -113,10 +113,10 @@ void log_wakeup_reason(int irq) struct irq_desc *desc; desc = irq_to_desc(irq); if (desc && desc->action && desc->action->name) - printk(KERN_INFO "Resume caused by IRQ %d, %s\n", irq, + printk(KERN_DEBUG "Resume caused by IRQ %d, %s\n", irq, desc->action->name); else - printk(KERN_INFO "Resume caused by IRQ %d\n", irq); + printk(KERN_DEBUG "Resume caused by IRQ %d\n", irq); spin_lock(&resume_reason_lock); if (irqcount == MAX_WAKEUP_REASON_IRQS) { |
