From: Takashi Iwai Date: Wed, 30 Jul 2014 08:03:44 +0000 (+0200) Subject: hda_analyzer: Add "In-driver Connection" and "Devices" lines to parser X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=56c640a98975b03a6a78a44b2c01e49dfd7b5263;p=alsa.git 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 --- 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