Re: [PATCH 3/4] wifi: wcn36xx: Add check for WCN3680B

From: Krzysztof Kozlowski
Date: Mon Oct 16 2023 - 01:36:55 EST


On 15/10/2023 22:03, Luca Weiss wrote:
> Add a check for the WCN3680B compatible next to the WCN3680 compatible.
>
> Signed-off-by: Luca Weiss <luca@xxxxxxxxx>
> ---
> drivers/net/wireless/ath/wcn36xx/main.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/ath/wcn36xx/main.c b/drivers/net/wireless/ath/wcn36xx/main.c
> index 2bd1163177f0..74b0b7074760 100644
> --- a/drivers/net/wireless/ath/wcn36xx/main.c
> +++ b/drivers/net/wireless/ath/wcn36xx/main.c
> @@ -1535,7 +1535,8 @@ static int wcn36xx_platform_get_resources(struct wcn36xx *wcn,
> if (of_device_is_compatible(iris_node, "qcom,wcn3660") ||
> of_device_is_compatible(iris_node, "qcom,wcn3660b"))
> wcn->rf_id = RF_IRIS_WCN3660;
> - if (of_device_is_compatible(iris_node, "qcom,wcn3680"))
> + if (of_device_is_compatible(iris_node, "qcom,wcn3680") ||
> + of_device_is_compatible(iris_node, "qcom,wcn3680b"))

Same comment

Best regards,
Krzysztof