From: whitequark Date: Sat, 26 Jan 2019 18:23:58 +0000 (+0000) Subject: compat.fifo: fix _FIFOInterface deprecation wrapper. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ebc1cba14eb64d8835a926434cf6074a6caed8c6;p=nmigen.git compat.fifo: fix _FIFOInterface deprecation wrapper. --- diff --git a/nmigen/compat/genlib/fifo.py b/nmigen/compat/genlib/fifo.py index 896b26b..4e412d3 100644 --- a/nmigen/compat/genlib/fifo.py +++ b/nmigen/compat/genlib/fifo.py @@ -6,8 +6,8 @@ from ...lib.fifo import FIFOInterface as NativeFIFOInterface, \ __all__ = ["_FIFOInterface", "SyncFIFO", "SyncFIFOBuffered", "AsyncFIFO", "AsyncFIFOBuffered"] -@deprecated("attribute `fwft` must be provided to FIFOInterface constructor") class CompatFIFOInterface(NativeFIFOInterface): + @deprecated("attribute `fwft` must be provided to FIFOInterface constructor") def __init__(self, width, depth): super().__init__(width, depth, fwft=False) del self.fwft