[PATCH 2/2] hdmi: audio infoframe log: corrected channel count
Hans Verkuil
hverkuil at xs4all.nl
Mon Nov 20 13:41:29 UTC 2017
From: Martin Bugge <marbugge at cisco.com>
Audio channel count should start from 2.
Reference: CEA-861-F Table 27.
Cc: Hans Verkuil <hverkuil at xs4all.nl>
Reported-by: Ahung Cheng <ahcheng at nvidia.com>
Signed-off-by: Martin Bugge <marbugge at cisco.com>
---
drivers/video/hdmi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/hdmi.c b/drivers/video/hdmi.c
index 61f803f75a47..5f78b254dd59 100644
--- a/drivers/video/hdmi.c
+++ b/drivers/video/hdmi.c
@@ -884,7 +884,7 @@ static void hdmi_audio_infoframe_log(const char *level,
(struct hdmi_any_infoframe *)frame);
if (frame->channels)
- hdmi_log(" channels: %u\n", frame->channels - 1);
+ hdmi_log(" channels: %u\n", frame->channels + 1);
else
hdmi_log(" channels: Refer to stream header\n");
hdmi_log(" coding type: %s\n",
--
2.14.1
More information about the dri-devel
mailing list