From f8732acece7cd5d980a40b56768960e7e5a94b62 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Sun, 28 Feb 2016 21:06:20 +0100 Subject: [PATCH] rtio.spi: drop unused argument --- artiq/gateware/rtio/phy/spi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/gateware/rtio/phy/spi.py b/artiq/gateware/rtio/phy/spi.py index e72f602c2..92ab7a548 100644 --- a/artiq/gateware/rtio/phy/spi.py +++ b/artiq/gateware/rtio/phy/spi.py @@ -5,7 +5,7 @@ from artiq.gateware.rtio.phy.wishbone import RT2WB class SPIMaster(Module): - def __init__(self, pads, onehot=False, **kwargs): + def __init__(self, pads, **kwargs): self.submodules._ll = ClockDomainsRenamer("rio")( SPIMasterWB(pads, **kwargs)) self.submodules._rt2wb = RT2WB(2, self._ll.bus)