grr, autopep8 messing up
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 6 Sep 2020 19:19:03 +0000 (20:19 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 6 Sep 2020 19:19:03 +0000 (20:19 +0100)
src/soc/decoder/power_decoder.py

index e4b87db1ca7debad7764c8318f222facd01f9914..119d79229c0ea8aa87b2afea2f0d815ace5e05a2 100644 (file)
@@ -101,15 +101,15 @@ from soc.decoder.power_fieldsn import SigDecode, SignalBitRange
 # key data structure in which the POWER decoder is specified,
 # in a hierarchical fashion
 Subdecoder = namedtuple("Subdecoder",
-                        ["pattern",    # the major pattern to search for (e.g. major opcode)
-                         "opcodes",    # a dictionary of minor patterns to find
-                         "opint",      # true => the pattern must not be in "10----11" format
-                         # the bits (as a range) against which "pattern" matches
-                         "bitsel",
-                         "suffix",     # shift the opcode down before decoding
-                         "subdecoders"  # list of further subdecoders for *additional* matches,
-                         # *ONLY* after "pattern" has *ALSO* been matched against.
-                         ])
+    ["pattern",    # the major pattern to search for (e.g. major opcode)
+     "opcodes",    # a dictionary of minor patterns to find
+     "opint",      # true => the pattern must not be in "10----11" format
+     # the bits (as a range) against which "pattern" matches
+     "bitsel",
+     "suffix",     # shift the opcode down before decoding
+     "subdecoders"  # list of further subdecoders for *additional* matches,
+     # *ONLY* after "pattern" has *ALSO* been matched against.
+     ])
 
 
 class PowerOp: