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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ static void int3400_notify(acpi_handle handle,
				thermal_prop);
		break;
	default:
		dev_err(&priv->adev->dev, "Unsupported event [0x%x]\n", event);
		/* Ignore unknown notification codes sent to INT3400 device */
		break;
	}
}