diff options
author | Alex Hung <[email protected]> | 2020-06-15 16:39:57 -0600 |
---|---|---|
committer | Zhang Rui <[email protected]> | 2020-07-15 09:10:28 +0800 |
commit | f3d7fb38976b1b0a8462ba1c7cbd404ddfaad086 (patch) | |
tree | c47d76510a34ef45545480307c54ae5be5a54794 | |
parent | 3ce315a704b4568616d1b14166cff3430ef07d12 (diff) |
thermal: int3403_thermal: Downgrade error message
Downgrade "Unsupported event" message from dev_err to dev_dbg to avoid
flooding with this message on some platforms.
Cc: [email protected] # v5.4+
Suggested-by: Zhang Rui <[email protected]>
Signed-off-by: Alex Hung <[email protected]>
[ rzhang: fix typo in changelog ]
Signed-off-by: Zhang Rui <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | drivers/thermal/intel/int340x_thermal/int3403_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/intel/int340x_thermal/int3403_thermal.c b/drivers/thermal/intel/int340x_thermal/int3403_thermal.c index f86cbb125e2f..ec1d58c4ceaa 100644 --- a/drivers/thermal/intel/int340x_thermal/int3403_thermal.c +++ b/drivers/thermal/intel/int340x_thermal/int3403_thermal.c @@ -74,7 +74,7 @@ static void int3403_notify(acpi_handle handle, THERMAL_TRIP_CHANGED); break; default: - dev_err(&priv->pdev->dev, "Unsupported event [0x%x]\n", event); + dev_dbg(&priv->pdev->dev, "Unsupported event [0x%x]\n", event); break; } } |