Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

remoteproc: qcom_wcnss: Add qcom,wcn3660b compatible

WCN3660B is a variant of WCN3660, but with the same regulator
requirements as WCN3620/WCN3680. As far as qcom_wcnss_iris is
concerned we can just use qcom,wcn3680 (wcn3680_data).

However, a separate compatible is needed for WCN3660B because
the wcn36xx driver uses it to enable chip-specific functionality.
In particular, it enables 802.11ac for qcom,wcn3680 which is not
supported by WCN3660B.

Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
Link: https://lore.kernel.org/r/20210106102134.59801-3-stephan@gerhold.net
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>

authored by

Stephan Gerhold and committed by
Bjorn Andersson
8cc8eeff a1cd0d4d

+1
+1
drivers/remoteproc/qcom_wcnss_iris.c
··· 160 160 static const struct of_device_id iris_of_match[] = { 161 161 { .compatible = "qcom,wcn3620", .data = &wcn3620_data }, 162 162 { .compatible = "qcom,wcn3660", .data = &wcn3660_data }, 163 + { .compatible = "qcom,wcn3660b", .data = &wcn3680_data }, 163 164 { .compatible = "qcom,wcn3680", .data = &wcn3680_data }, 164 165 {} 165 166 };