Skip to content
Snippets Groups Projects
Commit dca82f0a authored by Mitchel Humpherys's avatar Mitchel Humpherys
Browse files

lrdp-v2: boards: Fix bogus indent

Somehow one of our boards has 9-space indentation.  Fix this.

CRs-Fixed: 1013327
Change-Id: Id0d4f51105e954567c745a64d35367159d50a6c4
parent 0b45f2e9
No related branches found
No related tags found
No related merge requests found
...@@ -27,15 +27,15 @@ class Board(object): ...@@ -27,15 +27,15 @@ class Board(object):
""" """
def __init__(self): def __init__(self):
self.socid = -1 self.socid = -1
self.board_num = -1 self.board_num = -1
self.cpu = 'UNKNOWN' self.cpu = 'UNKNOWN'
self.ram_start = 0 self.ram_start = 0
self.imem_start = 0 self.imem_start = 0
self.smem_addr = 0 self.smem_addr = 0
self.phys_offset = 0 self.phys_offset = 0
self.wdog_addr = 0 self.wdog_addr = 0
self.imem_file_name = None self.imem_file_name = None
class Board8960(Board): class Board8960(Board):
def __init__(self, socid, board_num, phys_offset=0x80200000, ram_start=0x80000000): def __init__(self, socid, board_num, phys_offset=0x80200000, ram_start=0x80000000):
......
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