soc/intergration/soc_core: don't delete uart/timer0 interrupts

This commit is contained in:
Florent Kermarrec 2018-05-01 00:46:26 +02:00
parent 39ffa532b0
commit 121eaba722
1 changed files with 4 additions and 4 deletions

View File

@ -146,8 +146,8 @@ class SoCCore(Module):
else:
self.submodules.uart_phy = uart.RS232PHY(platform.request(uart_name), clk_freq, uart_baudrate)
self.submodules.uart = uart.UART(self.uart_phy)
else:
del self.soc_interrupt_map["uart"]
#else:
# del self.soc_interrupt_map["uart"]
if ident:
if ident_version:
@ -158,8 +158,8 @@ class SoCCore(Module):
if with_timer:
self.submodules.timer0 = timer.Timer()
else:
del self.soc_interrupt_map["timer0"]
#else:
# del self.soc_interrupt_map["timer0"]
# Invert the interrupt map.
interrupt_rmap = {}