comment cleanup
[nmigen-soc.git] / nmigen_soc / wishbone / bus.py
index 7b44f34f3d4667965557fe8c8e444ddfc7585bac..77421eb4a72544da7f0324b1f0a7832b74aee22d 100644 (file)
@@ -407,10 +407,11 @@ class Arbiter(Elaboratable):
         # Wishbone B4)
         bus_busy = self.bus.cyc
         if hasattr(self.bus, "lock"):
-            # If LOCK is not asserted, we also wait for STB to be deasserted before granting bus
-            # ownership to the next initiator. If we didn't, the next bus owner could receive
-            # an ACK (or ERR, RTY) from the previous transaction when targeting the same
-            # peripheral.
+            # If LOCK is not asserted, we also wait for STB to be
+            # deasserted before granting bus ownership to the next
+            # initiator. If we didn't, the next bus owner could receive
+            # an ACK (or ERR, RTY) from the previous transaction when
+            # targeting the same peripheral.
             bus_busy &= self.bus.lock | self.bus.stb
 
         m.d.comb += [