diff options
author | Mark Brown <broonie@kernel.org> | 2023-12-19 16:46:16 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-12-19 16:46:16 +0000 |
commit | 2f2998895cc29e8660d848d2580b1787710e93f6 (patch) | |
tree | 2f789dc143b04161817d4baa6d3cefec39b5a795 | |
parent | 791667f7f0dfb65eb472b1dae84524ec9bfc1ff4 (diff) | |
parent | 7211094dd065908747a143f9adeff41cfdcf37c0 (diff) |
ASoC: qcom: add sound card support for SM8650
Merge series from Neil Armstrong <neil.armstrong@linaro.org>:
Document the SM8650 sound card using the SM8450 fallback
and add the SM8650 compatible to the sc8280xp sound card
driver to use the sm8650 card driver_name like SM8450 & SM8550.
-rw-r--r-- | Documentation/devicetree/bindings/sound/qcom,sm8250.yaml | 1 | ||||
-rw-r--r-- | sound/soc/qcom/sc8280xp.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml b/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml index 4673fdffe312..6f419747273e 100644 --- a/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml +++ b/Documentation/devicetree/bindings/sound/qcom,sm8250.yaml @@ -24,6 +24,7 @@ properties: - items: - enum: - qcom,sm8550-sndcard + - qcom,sm8650-sndcard - const: qcom,sm8450-sndcard - enum: - qcom,apq8016-sbc-sndcard diff --git a/sound/soc/qcom/sc8280xp.c b/sound/soc/qcom/sc8280xp.c index ebbbb8e6b68c..9a096600df48 100644 --- a/sound/soc/qcom/sc8280xp.c +++ b/sound/soc/qcom/sc8280xp.c @@ -153,6 +153,7 @@ static const struct of_device_id snd_sc8280xp_dt_match[] = { {.compatible = "qcom,sc8280xp-sndcard", "sc8280xp"}, {.compatible = "qcom,sm8450-sndcard", "sm8450"}, {.compatible = "qcom,sm8550-sndcard", "sm8550"}, + {.compatible = "qcom,sm8650-sndcard", "sm8650"}, {} }; |