From 6757059ceaa7e008a4d8489a3d18f1089a4d6f85 Mon Sep 17 00:00:00 2001
From: Mitchel Humpherys <mitchelh@codeaurora.org>
Date: Thu, 14 Aug 2014 10:49:29 -0700
Subject: [PATCH] lrdpv2: quiet down some parsers

The pagetracking and debug image parsers currently print out some
miscellaneous stuff (probably residue from debugging during the
development of those parsers). These are the only raw print statements
in the code. Remove them to avoid polluting other output (like the
individual parser timing indicators).

Change-Id: I6dc2359e5bb7d4520f26a7bcb7196b82a4ffdb69
---
 linux-ramdump-parser-v2/parsers/pagetracking.py | 2 --
 linux-ramdump-parser-v2/watchdog_v2.py          | 1 -
 2 files changed, 3 deletions(-)

diff --git a/linux-ramdump-parser-v2/parsers/pagetracking.py b/linux-ramdump-parser-v2/parsers/pagetracking.py
index 2ff5897..3f10065 100644
--- a/linux-ramdump-parser-v2/parsers/pagetracking.py
+++ b/linux-ramdump-parser-v2/parsers/pagetracking.py
@@ -39,8 +39,6 @@ class PageTracking(RamParser):
         out_frequency = self.ramdump.open_file('page_frequency.txt')
         sorted_pages = {}
 
-        print 'min {0:x} max {1:x}'.format(min_pfn, max_pfn)
-
         for pfn in range(min_pfn, max_pfn):
             page = pfn_to_page(self.ramdump, pfn)
 
diff --git a/linux-ramdump-parser-v2/watchdog_v2.py b/linux-ramdump-parser-v2/watchdog_v2.py
index 99139eb..e1eaa6d 100644
--- a/linux-ramdump-parser-v2/watchdog_v2.py
+++ b/linux-ramdump-parser-v2/watchdog_v2.py
@@ -273,7 +273,6 @@ class TZRegDump_v2():
         secure_regs.close()
 
     def dump_core_pc(self, ram_dump):
-        print ''
         pc = self.core_regs.regs['pc']
         if ram_dump.arm64:
             lr = self.core_regs.regs['x30']
-- 
GitLab