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 /drivers | |
| 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 'drivers')
| -rw-r--r-- | drivers/base/power/main.c | 2 | ||||
| -rw-r--r-- | drivers/pci/pci.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index 944939ab3..cb3d1be7d 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c @@ -379,7 +379,7 @@ static void dpm_show_time(ktime_t starttime, pm_message_t state, char *info) usecs = usecs64; if (usecs == 0) usecs = 1; - hib_log("PM: %s%s%s of devices complete after %ld.%03ld msecs\n", + pr_debug("PM: %s%s%s of devices complete after %ld.%03ld msecs\n", info ?: "", info ? " " : "", pm_verb(state.event), usecs / USEC_PER_MSEC, usecs % USEC_PER_MSEC); } diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index d6ceb2e45..5608b94cb 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -567,7 +567,7 @@ static int pci_raw_set_power_state(struct pci_dev *dev, pci_power_t state) pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr); dev->current_state = (pmcsr & PCI_PM_CTRL_STATE_MASK); if (dev->current_state != state && printk_ratelimit()) - dev_info(&dev->dev, "Refused to change power state, " + dev_printk(KERN_DEBUG, &dev->dev, "Refused to change power state, " "currently in D%d\n", dev->current_state); /* |
