From 7b49fd9386abd4e19bd097d6643c97f153aa488d Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 15 Mar 2013 19:47:01 +0100 Subject: [PATCH] fhdl/specials: fix rename_clock_domain declarations --- migen/fhdl/specials.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/migen/fhdl/specials.py b/migen/fhdl/specials.py index ad78a488..5c9bac17 100644 --- a/migen/fhdl/specials.py +++ b/migen/fhdl/specials.py @@ -4,7 +4,7 @@ from migen.fhdl.tracer import get_obj_var_name from migen.fhdl.verilog import _printexpr as verilog_printexpr class Special(HUID): - def rename_clock_domain(self): + def rename_clock_domain(self, old, new): pass def get_clock_domains(self): @@ -94,7 +94,7 @@ class Instance(Special): if isinstance(item, Instance._IO) and item.name == name: return item.expr - def rename_clock_domain(self): + def rename_clock_domain(self, old, new): for cr in filter(lambda x: isinstance(x, Instance._CR), self.items): if cr.domain == old: cr.domain = new @@ -214,7 +214,7 @@ class Memory(Special): self.ports.append(mp) return mp - def rename_clock_domain(self): + def rename_clock_domain(self, old, new): for port in self.ports: if port.clock_domain == old: port.clock_domain = new -- 2.30.2