Skip to content
Snippets Groups Projects
Commit 3962dae7 authored by Ritesh Harjani's avatar Ritesh Harjani
Browse files

lrdp-v2: mmcdoctor: Fix fd close and print_out_str API

This closes the open files and correct the API
from print_out_string to print_out_str.

Change-Id: Icbf8c5f5421ac90de4440c04fb93184ed22ee7e5
parent f4c9cb6f
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ import os
from parser_util import register_parser, RamParser
from parsers.irqstate import IrqParse
from dmesglib import DmesgLib
from print_out import print_out_str
MMC0_IRQ = 0
MMC1_IRQ = 0
......@@ -99,6 +99,8 @@ class ParseMmcLog():
if (line and PATTERN_END in line):
fdw.write("ERROR" + line)
line = fdr.readline()
fdw.close()
fdr.close()
self.ramdump.remove_file(F_MMCTEMP)
......@@ -362,5 +364,5 @@ class MmcDebug(RamParser):
return
dump_mmc_info(self.ramdump, count_irq)
else:
print_out_string("\n Could not generate MMC diagnose report\n")
print_out_str("\n Could not generate MMC diagnose report\n")
return
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