From 8e48502d0362bb71635d48daae7872a4ffbe076c Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 3 Mar 2015 00:54:30 +0000 Subject: [PATCH] spiflash: style --- misoclib/mem/flash/spiflash/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misoclib/mem/flash/spiflash/__init__.py b/misoclib/mem/flash/spiflash/__init__.py index 090e818d1..0d8cc890d 100644 --- a/misoclib/mem/flash/spiflash/__init__.py +++ b/misoclib/mem/flash/spiflash/__init__.py @@ -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()