]> git.alsa-project.org Git - alsa.git/commitdiff
hda_analyzer: Add "In-driver Connection" and "Devices" lines to parser
authorTakashi Iwai <tiwai@suse.de>
Wed, 30 Jul 2014 08:03:44 +0000 (10:03 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 30 Jul 2014 08:43:40 +0000 (10:43 +0200)
The new entries appear in the recent Intel HDMI codecs.
Just ignored, so far.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
hda-analyzer/hda_proc.py

index 3d544c8d9189580047de6536f572567e1387347c..e1c16b1131ab2c7acf031bd994d712e78be90258 100644 (file)
@@ -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