Skip to content
Snippets Groups Projects
Commit 1b8d54b4 authored by Laura Abbott's avatar Laura Abbott
Browse files

linux-ramdump-parser-v2: Remove versioning

The IRQ state is stable and isn't likely to change any time soon.
Remove the version checks which do nothing for now.

Change-Id: I3ba2d4fcde6694c16d5f8b79d26b971341f1acc2
parent 9a0f96da
No related branches found
No related tags found
No related merge requests found
...@@ -161,8 +161,4 @@ class IrqParse(RamParser): ...@@ -161,8 +161,4 @@ class IrqParse(RamParser):
if irq_desc is None: if irq_desc is None:
return return
ver = self.ramdump.version self.print_irq_state_3_0(self.ramdump)
if re.search('3.0.\d', ver) is not None:
self.print_irq_state_3_0(self.ramdump)
if re.search('3.4.\d', ver) is not None:
self.print_irq_state_3_0(self.ramdump)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment