diff options
author | 2021-03-01 15:54:06 +0800 | |
---|---|---|
committer | 2023-10-29 22:21:19 +0100 | |
commit | ca562a9cf7178859a9767e72eaa7286f1c79bd3e (patch) | |
tree | 4a7789efc168214a2a3fe809df939555fa1109bc /drivers | |
parent | Documentation: i2c: add fault code for not supporting 10 bit addresses (diff) | |
download | wireguard-linux-ca562a9cf7178859a9767e72eaa7286f1c79bd3e.tar.xz wireguard-linux-ca562a9cf7178859a9767e72eaa7286f1c79bd3e.zip |
i2c: qcom-geni: add ACPI device id for sc8180x
It adds ACPI device id for sc8180x platform, so that the devices can be
probed for ACPI boot.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/i2c/busses/i2c-qcom-geni.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/busses/i2c-qcom-geni.c index 229353e96e09..6d829ed2f868 100644 --- a/drivers/i2c/busses/i2c-qcom-geni.c +++ b/drivers/i2c/busses/i2c-qcom-geni.c @@ -722,6 +722,7 @@ static const struct i2c_algorithm geni_i2c_algo = { #ifdef CONFIG_ACPI static const struct acpi_device_id geni_i2c_acpi_match[] = { { "QCOM0220"}, + { "QCOM0411" }, { }, }; MODULE_DEVICE_TABLE(acpi, geni_i2c_acpi_match); |