Skip to content

Commit

Permalink
decorators: fix ControlInserter
Browse files Browse the repository at this point in the history
jordens authored and sbourdeauducq committed Apr 5, 2015
1 parent db76def commit f26ad97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migen/fhdl/decorators.py
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ def transform_fragment(self, i, f):
to_insert = [(getattr(i, self.control_name), cdn)]
else:
to_insert = [(getattr(i, self.control_name + "_" + cdn), cdn)
for cdn in clock_domains]
for cdn in self.clock_domains]
self.transform_fragment_insert(i, f, to_insert)

class CEInserter(ControlInserter):

0 comments on commit f26ad97

Please sign in to comment.