mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
25 lines
812 B
Diff
25 lines
812 B
Diff
|
From 9ab73f9efe983f2f9b6887150a2e7a48d7a57ded Mon Sep 17 00:00:00 2001
|
||
|
From: Sandor Yu <Sandor.yu@nxp.com>
|
||
|
Date: Mon, 2 Sep 2019 15:58:34 +0800
|
||
|
Subject: [PATCH] drm: rockchip: Fix build failed issue
|
||
|
|
||
|
Macro variable AFMT_SPDIF have renamed to AFMT_SPDIF_INT in headfile.
|
||
|
use the correct variable to fix build issue.
|
||
|
|
||
|
Signed-off-by: Sandor Yu <Sandor.yu@nxp.com>
|
||
|
---
|
||
|
drivers/gpu/drm/rockchip/cdn-dp-core.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/drivers/gpu/drm/rockchip/cdn-dp-core.c
|
||
|
+++ b/drivers/gpu/drm/rockchip/cdn-dp-core.c
|
||
|
@@ -797,7 +797,7 @@ static int cdn_dp_audio_hw_params(struct
|
||
|
audio.format = AFMT_I2S;
|
||
|
break;
|
||
|
case HDMI_SPDIF:
|
||
|
- audio.format = AFMT_SPDIF;
|
||
|
+ audio.format = AFMT_SPDIF_INT;
|
||
|
break;
|
||
|
default:
|
||
|
DRM_DEV_ERROR(dev, "Invalid format %d\n", daifmt->fmt);
|