Commit 261ac1d2 authored by Brian Bian's avatar Brian Bian Committed by Zhang Rui

thermal: int3400_thermal: Ignore Unknown Notification Codes

Some BIOS implementations route ACPI codes other than 0x83 to INT3400
device. Ignore these ACPI notification codes because the INT3400 driver
does not handle them.
Signed-off-by: default avatarBrian Bian <brian.bian@linux.intel.com>
Signed-off-by: default avatarZhang Rui <rui.zhang@intel.com>
parent 464e1d5f
...@@ -211,7 +211,7 @@ static void int3400_notify(acpi_handle handle, ...@@ -211,7 +211,7 @@ static void int3400_notify(acpi_handle handle,
thermal_prop); thermal_prop);
break; break;
default: default:
dev_err(&priv->adev->dev, "Unsupported event [0x%x]\n", event); /* Ignore unknown notification codes sent to INT3400 device */
break; break;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment