Fix formatting to make pylint happy.
authorTim Newsome <tim@sifive.com>
Mon, 30 Apr 2018 19:54:03 +0000 (12:54 -0700)
committerTim Newsome <tim@sifive.com>
Mon, 30 Apr 2018 19:54:03 +0000 (12:54 -0700)
debug/gdbserver.py

index af9a33456b5855c348f2fa28f209c2d276f6a9a4..98eb818d5ae4146358b92d6611acd798449c8e13 100755 (executable)
@@ -881,13 +881,14 @@ class PrivRw(PrivTest):
             # PMP registers are optional
             pass
 
-        # Ensure Virtual Memory is disabled if applicable (SATP register is not reset)
+        # Ensure Virtual Memory is disabled if applicable (SATP register is not
+        # reset)
         try:
-           self.gdb.p("$satp=0")
+            self.gdb.p("$satp=0")
         except testlib.CouldNotFetch:
-           # SATP only exists if you have S mode.
-           pass
-        
+            # SATP only exists if you have S mode.
+            pass
+
         # Leave the PC at _start, where the first 4 instructions should be
         # legal in any mode.
         for privilege in range(4):