From dca82f0abf38092ea4125c656e777b2e5954d2d9 Mon Sep 17 00:00:00 2001 From: Mitchel Humpherys <mitchelh@codeaurora.org> Date: Wed, 27 Apr 2016 13:28:14 -0700 Subject: [PATCH] lrdp-v2: boards: Fix bogus indent Somehow one of our boards has 9-space indentation. Fix this. CRs-Fixed: 1013327 Change-Id: Id0d4f51105e954567c745a64d35367159d50a6c4 --- linux-ramdump-parser-v2/boards.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/linux-ramdump-parser-v2/boards.py b/linux-ramdump-parser-v2/boards.py index e2ca2e2..1b43197 100755 --- a/linux-ramdump-parser-v2/boards.py +++ b/linux-ramdump-parser-v2/boards.py @@ -27,15 +27,15 @@ class Board(object): """ def __init__(self): - self.socid = -1 - self.board_num = -1 - self.cpu = 'UNKNOWN' - self.ram_start = 0 - self.imem_start = 0 - self.smem_addr = 0 - self.phys_offset = 0 - self.wdog_addr = 0 - self.imem_file_name = None + self.socid = -1 + self.board_num = -1 + self.cpu = 'UNKNOWN' + self.ram_start = 0 + self.imem_start = 0 + self.smem_addr = 0 + self.phys_offset = 0 + self.wdog_addr = 0 + self.imem_file_name = None class Board8960(Board): def __init__(self, socid, board_num, phys_offset=0x80200000, ram_start=0x80000000): -- GitLab