summaryrefslogtreecommitdiffstats
path: root/drivers/thermal
diff options
context:
space:
mode:
authorSrinivas Pandruvada2019-04-30 05:42:13 +0200
committerZhang Rui2019-05-07 15:53:43 +0200
commit44c0c23725a16c8803b8809b87651405e8741e4d (patch)
tree02008ade0459ba706becfc2c109c9cd1a01268b8 /drivers/thermal
parentthermal: intel: int340x: processor_thermal_device: simplify to get driver data (diff)
downloadkernel-qcow2-linux-44c0c23725a16c8803b8809b87651405e8741e4d.tar.gz
kernel-qcow2-linux-44c0c23725a16c8803b8809b87651405e8741e4d.tar.xz
kernel-qcow2-linux-44c0c23725a16c8803b8809b87651405e8741e4d.zip
drivers: thermal: processor_thermal: Downgrade error message
Downgrade "Unsupported event" message from dev_err to dev_dbg. Otherwise it floods with this message one some platforms. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r--drivers/thermal/intel/int340x_thermal/processor_thermal_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/intel/int340x_thermal/processor_thermal_device.c b/drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
index 2a7cbaa1712d..2e6071a82da2 100644
--- a/drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
+++ b/drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
@@ -265,7 +265,7 @@ static void proc_thermal_notify(acpi_handle handle, u32 event, void *data)
THERMAL_DEVICE_POWER_CAPABILITY_CHANGED);
break;
default:
- dev_err(proc_priv->dev, "Unsupported event [0x%x]\n", event);
+ dev_dbg(proc_priv->dev, "Unsupported event [0x%x]\n", event);
break;
}
}