From: Sugar Zhang Date: Tue, 24 Aug 2021 10:16:01 +0000 (+0800) Subject: ASoC: rockchip: spdif: Add support for rk3568 spdif X-Git-Tag: accepted/tizen/unified/20230118.172025~6151^2~1^2~43^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5d4f09feb9f74e704d87a304f0c20001488fe10;p=platform%2Fkernel%2Flinux-rpi.git ASoC: rockchip: spdif: Add support for rk3568 spdif This patch adds support for rk3568 spdif which is the same with rk3366. Signed-off-by: Sugar Zhang Link: https://lore.kernel.org/r/1629800162-12824-4-git-send-email-sugar.zhang@rock-chips.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/rockchip/rockchip_spdif.c b/sound/soc/rockchip/rockchip_spdif.c index 92b27b6..d027ca4 100644 --- a/sound/soc/rockchip/rockchip_spdif.c +++ b/sound/soc/rockchip/rockchip_spdif.c @@ -58,6 +58,8 @@ static const struct of_device_id rk_spdif_match[] __maybe_unused = { .data = (void *)RK_SPDIF_RK3366 }, { .compatible = "rockchip,rk3399-spdif", .data = (void *)RK_SPDIF_RK3366 }, + { .compatible = "rockchip,rk3568-spdif", + .data = (void *)RK_SPDIF_RK3366 }, {}, }; MODULE_DEVICE_TABLE(of, rk_spdif_match);