dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Jesse Barnes 2010-07-28 14:42:56 -07:00 committed by Matthew Garrett
parent 5aa06930fb
commit 1a14703d6b
1 changed files with 2 additions and 2 deletions

View File

@ -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;