Skip to content

Commit f26ad97

Browse files
jordenssbourdeauducq
authored andcommittedApr 5, 2015
decorators: fix ControlInserter
1 parent db76def commit f26ad97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎migen/fhdl/decorators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def transform_fragment(self, i, f):
8181
to_insert = [(getattr(i, self.control_name), cdn)]
8282
else:
8383
to_insert = [(getattr(i, self.control_name + "_" + cdn), cdn)
84-
for cdn in clock_domains]
84+
for cdn in self.clock_domains]
8585
self.transform_fragment_insert(i, f, to_insert)
8686

8787
class CEInserter(ControlInserter):

0 commit comments

Comments
 (0)
Please sign in to comment.