From: Florent Kermarrec Date: Mon, 8 Jul 2019 20:56:14 +0000 (+0200) Subject: soc_cores: fix typos X-Git-Tag: 24jan2021_ls180~1116 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=41b6fbde42babd96cc3dca5c91c1d6234d25cdf6;p=litex.git soc_cores: fix typos --- diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 6f5b3cf7..7297111b 100644 --- a/litex/soc/integration/soc_core.py +++ b/litex/soc/integration/soc_core.py @@ -345,7 +345,7 @@ class SoCCore(Module): if allow_user_defined: return else: - raise ValueError("Interrupt conflit, {} name already used".format(interrupt_name)) + raise ValueError("Interrupt conflict, {} name already used".format(interrupt_name)) # Check that interrupt_id is in range if interrupt_id is not None and interrupt_id >= 32: @@ -373,7 +373,7 @@ class SoCCore(Module): if allow_user_defined: return else: - raise ValueError("CSR conflit, {} name already used".format(csr_name)) + raise ValueError("CSR conflict, {} name already used".format(csr_name)) # Check that csr_id is in range if csr_id is not None and csr_id >= 2**self.csr_address_width: