targets/kc705: remove unneeded argument on qc2

This commit is contained in:
Sebastien Bourdeauducq 2015-11-04 20:09:37 +08:00
parent d4747a85f3
commit ad5a32fb6e
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ class NIST_QC1(_NIST_QCx):
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)