spiflash: style
authorSebastien Bourdeauducq <sb@m-labs.hk>
Tue, 3 Mar 2015 00:54:30 +0000 (00:54 +0000)
committerSebastien Bourdeauducq <sb@m-labs.hk>
Tue, 3 Mar 2015 00:54:30 +0000 (00:54 +0000)
misoclib/mem/flash/spiflash/__init__.py

index 090e818d197dd125d4eb1ceeb63cbb2becf45aca..0d8cc890d36968540b6ab8fc9dda585088e4e7a8 100644 (file)
@@ -30,7 +30,7 @@ class SpiFlash(Module, AutoCSR):
 
                Supports multi-bit pseudo-parallel reads (aka Dual or Quad I/O Fast
                Read). Only supports mode0 (cpol=0, cpha=0).
-               Optional supports software bitbanging (for write, erase, or other commands).
+               Optionally supports software bitbanging (for write, erase, or other commands).
                """
                self.bus = bus = wishbone.Interface()
                spi_width = flen(pads.dq)
@@ -39,7 +39,7 @@ class SpiFlash(Module, AutoCSR):
                        self.miso = CSRStatus()
                        self.bitbang_en = CSRStorage()
 
-               ##
+               ###
 
                cs_n = Signal(reset=1)
                clk = Signal()