From 1f0967865365761d2e46348fb337a7dc97fb3d05 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 22 Nov 2019 19:42:52 +0100 Subject: [PATCH] core: remove cd parameter retro-compatibility --- litescope/core.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/litescope/core.py b/litescope/core.py index e144b96..98eb986 100644 --- a/litescope/core.py +++ b/litescope/core.py @@ -225,12 +225,7 @@ class _Storage(Module, AutoCSR): class LiteScopeAnalyzer(Module, AutoCSR): - def __init__(self, groups, depth, clock_domain="sys", trigger_depth=16, csr_csv=None, **kwargs): - # retro-compatibility # FIXME: remove - if "cd" in kwargs: - print("[WARNING] Please update LiteScopeAnalyzer's \"cd\" parameter to \"clock_domain\"") - clock_domain = kwargs["cd"] - + def __init__(self, groups, depth, clock_domain="sys", trigger_depth=16, csr_csv=None): self.groups = groups = self.format_groups(groups) self.depth = depth