diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-07-28 14:42:56 -0700 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2010-08-03 11:55:15 -0400 |
commit | 1a14703d6b20010401ca273ac1f07bff7992aa2c (patch) | |
tree | 3c4243192bbe94270fd36a58c07de9a00c04d40f /drivers/platform/x86 | |
parent | 5aa06930fbcfcb6b03fcb18b753122b10ac47a87 (diff) | |
download | kernel_samsung_smdk4412-1a14703d6b20010401ca273ac1f07bff7992aa2c.zip kernel_samsung_smdk4412-1a14703d6b20010401ca273ac1f07bff7992aa2c.tar.gz kernel_samsung_smdk4412-1a14703d6b20010401ca273ac1f07bff7992aa2c.tar.bz2 |
ips driver: make it less chatty
We don't need a dev_warn when we exceed a thermal or power limit as
we'll handle it appropriately by clamping down on the CPU, GPU or both
as needed.
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r-- | drivers/platform/x86/intel_ips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index 0344822..afe82e5 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c @@ -607,7 +607,7 @@ static bool mcp_exceeded(struct ips_driver *ips) spin_unlock_irqrestore(&ips->turbo_status_lock, flags); if (ret) - dev_warn(&ips->dev->dev, + dev_info(&ips->dev->dev, "MCP power or thermal limit exceeded\n"); return ret; @@ -635,7 +635,7 @@ static bool cpu_exceeded(struct ips_driver *ips, int cpu) spin_unlock_irqrestore(&ips->turbo_status_lock, flags); if (ret) - dev_warn(&ips->dev->dev, + dev_info(&ips->dev->dev, "CPU power or thermal limit exceeded\n"); return ret; |