From: Jaroslav Kysela Date: Thu, 19 Oct 2017 15:25:38 +0000 (+0200) Subject: hda-analyzer: ignore '*Dev' lines X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=55498f528103ff3bdeece3f1c861f96c05bb3454;p=alsa.git hda-analyzer: ignore '*Dev' lines --- diff --git a/hda-analyzer/hda_proc.py b/hda-analyzer/hda_proc.py index cf21d86..ce54e49 100644 --- a/hda-analyzer/hda_proc.py +++ b/hda-analyzer/hda_proc.py @@ -736,6 +736,8 @@ class HDACodecProc(HDACodec, HDABaseProc): pass elif line.startswith(' Dev '): pass + elif line.startswith(' *Dev '): + pass else: self.wrongfile(line) idx += 1