From 37fe6d64c369296bd66550c3b987f2e25a43d524 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 3 Aug 2012 12:58:41 +0200 Subject: [PATCH] flow: EndpointHook -> EndpointSimHook --- migen/flow/hooks.py | 2 +- migen/flow/perftools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/migen/flow/hooks.py b/migen/flow/hooks.py index 1afa1868..9165e641 100644 --- a/migen/flow/hooks.py +++ b/migen/flow/hooks.py @@ -2,7 +2,7 @@ from migen.fhdl.structure import * from migen.flow.actor import * from migen.sim.generic import PureSimulable -class EndpointHook(PureSimulable): +class EndpointSimHook(PureSimulable): def __init__(self, endpoint): self.endpoint = endpoint diff --git a/migen/flow/perftools.py b/migen/flow/perftools.py index 0deca307..aa13f999 100644 --- a/migen/flow/perftools.py +++ b/migen/flow/perftools.py @@ -1,6 +1,6 @@ from migen.flow.hooks import * -class EndpointReporter(EndpointHook): +class EndpointReporter(EndpointSimHook): def __init__(self, endpoint): super().__init__(endpoint) self.reset() -- 2.30.2