From df468fcf856e262ca40923a6e08509a82bdf12aa Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Sun, 14 Nov 2021 08:54:49 +0100 Subject: [PATCH] quicklogic_quickfeather: Avoid add_csr calls (not required). --- litex_boards/targets/quicklogic_quickfeather.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/litex_boards/targets/quicklogic_quickfeather.py b/litex_boards/targets/quicklogic_quickfeather.py index c57f83c..e5101e3 100755 --- a/litex_boards/targets/quicklogic_quickfeather.py +++ b/litex_boards/targets/quicklogic_quickfeather.py @@ -67,15 +67,12 @@ class BaseSoC(SoCCore): if with_gpioin: self.submodules.gpio = GPIOIn( pads = platform.request_all("user_btn_n"), with_irq=True) - self.add_csr("gpio") self.irq.add("gpio", use_loc_if_exists=True) # Leds ------------------------------------------------------------------------------------- if with_led_chaser: self.submodules.leds = LedChaser( pads = platform.request_all("user_led"), sys_clk_freq = sys_clk_freq) - if is_eoss3_cpu: - self.add_csr("leds") # Build --------------------------------------------------------------------------------------------