rcs_artic_term_bmc_card: Fix is -> ==.
This commit is contained in:
parent
496b2cfab9
commit
0f82db26da
|
@ -232,7 +232,7 @@ class Platform(LatticePlatform):
|
||||||
|
|
||||||
def __init__(self, device="LFE5UM5G", speed_grade="6", toolchain="trellis", **kwargs):
|
def __init__(self, device="LFE5UM5G", speed_grade="6", toolchain="trellis", **kwargs):
|
||||||
assert device in ["LFE5UM5G", "LFE5UM"]
|
assert device in ["LFE5UM5G", "LFE5UM"]
|
||||||
if device is "LFE5UM5G":
|
if device == "LFE5UM5G":
|
||||||
speed_grade = "8"
|
speed_grade = "8"
|
||||||
LatticePlatform.__init__(self, device + "-85F-" + speed_grade + "CABGA381", _io, toolchain=toolchain, **kwargs)
|
LatticePlatform.__init__(self, device + "-85F-" + speed_grade + "CABGA381", _io, toolchain=toolchain, **kwargs)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue