Merge pull request #843 from gregdavill/monitor_token_fix
cores/stream/monitor: Fix typo
This commit is contained in:
commit
ee2d373477
|
@ -648,7 +648,7 @@ class Monitor(Module, AutoCSR):
|
||||||
|
|
||||||
# Tokens Count -----------------------------------------------------------------------------
|
# Tokens Count -----------------------------------------------------------------------------
|
||||||
if with_tokens:
|
if with_tokens:
|
||||||
tokens_counter = MonitorCounter(reset, latch, endpoint.valid & endpoint.ready, self.tokens.status)
|
token_counter = MonitorCounter(reset, latch, endpoint.valid & endpoint.ready, self.tokens.status)
|
||||||
self.submodules += token_counter
|
self.submodules += token_counter
|
||||||
|
|
||||||
# Overflows Count (only useful when endpoint is expected to always be ready) ---------------
|
# Overflows Count (only useful when endpoint is expected to always be ready) ---------------
|
||||||
|
|
Loading…
Reference in New Issue