From 106b2caaec7308d28423cf02c9ca23708a553893 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 13 Feb 2023 15:43:29 +0100 Subject: [PATCH] soc/cores/xadc: Fix refactoring issue (Zync -> Zynq :)) --- litex/soc/cores/xadc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex/soc/cores/xadc.py b/litex/soc/cores/xadc.py index 1a0cce530..21b07e097 100644 --- a/litex/soc/cores/xadc.py +++ b/litex/soc/cores/xadc.py @@ -321,10 +321,10 @@ class USPSystemMonitor(USSystemMonitor): analog_pads = analog_pads, ) -class ZyncUSPSystemMonitor(USSystemMonitor): +class ZynqUSPSystemMonitor(USSystemMonitor): def __init__(self, analog_pads=None): USSystemMonitor.__init__(self, - channels = ZyncUSPSystemMonitorChannels, + channels = ZynqUSPSystemMonitorChannels, primitive = "SYSMONE4", sim_device = "ZYNQ_ULTRASCALE", analog_pads = analog_pads,