From 71f220a24deb5c142994e729b6f52af4f5e8526d Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 27 May 2020 10:13:44 +0200 Subject: [PATCH] colorlight_5a_75b: remove unnecessary parenthesis. --- litex_boards/targets/colorlight_5a_75b.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex_boards/targets/colorlight_5a_75b.py b/litex_boards/targets/colorlight_5a_75b.py index fc4b78e..898296a 100755 --- a/litex_boards/targets/colorlight_5a_75b.py +++ b/litex_boards/targets/colorlight_5a_75b.py @@ -94,7 +94,7 @@ class _CRG(Module): class BaseSoC(SoCCore): def __init__(self, revision, with_ethernet=False, with_etherbone=False, sys_clk_freq=60e6, **kwargs): platform = colorlight_5a_75b.Platform(revision=revision) - if (with_etherbone): + if with_etherbone: sys_clk_freq = int(125e6) # SoCCore ----------------------------------------------------------------------------------