From 56c640a98975b03a6a78a44b2c01e49dfd7b5263 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Wed, 30 Jul 2014 10:03:44 +0200 Subject: [PATCH] hda_analyzer: Add "In-driver Connection" and "Devices" lines to parser The new entries appear in the recent Intel HDMI codecs. Just ignored, so far. Signed-off-by: Takashi Iwai --- hda-analyzer/hda_proc.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hda-analyzer/hda_proc.py b/hda-analyzer/hda_proc.py index 3d544c8..e1c16b1 100644 --- a/hda-analyzer/hda_proc.py +++ b/hda-analyzer/hda_proc.py @@ -727,6 +727,11 @@ class HDACodecProc(HDACodec, HDABaseProc): node.add_processindex(line[21:]) elif line.startswith(' Volume-Knob: '): node.add_volknob(line[15:]) + elif line.startswith(' In-driver Connection: '): + idx += 1 + pass + elif line.startswith(' Devices: '): + pass else: self.wrongfile(line) idx += 1 -- 2.47.1