Skip to content

Commit

Permalink
targets/kc705: remove unneeded argument on qc2
Browse files Browse the repository at this point in the history
sbourdeauducq committed Nov 4, 2015
1 parent d4747a8 commit ad5a32f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions artiq/gateware/targets/kc705.py
Original file line number Diff line number Diff line change
@@ -182,8 +182,8 @@ def __init__(self, cpu_type="or1k", **kwargs):


class NIST_QC2(_NIST_QCx):
def __init__(self, platform, cpu_type="or1k", **kwargs):
_NIST_QCx.__init__(self, platform, cpu_type, **kwargs)
def __init__(self, cpu_type="or1k", **kwargs):
_NIST_QCx.__init__(self, cpu_type, **kwargs)

platform = self.platform
platform.add_extension(nist_qc2.fmc_adapter_io)

0 comments on commit ad5a32f

Please sign in to comment.