From 80d958b383259b7b124b5b207d9315cf112ab07b Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Fri, 10 May 2019 16:06:58 -0400 Subject: Change LFSR16 deprecation from 3.3 -> 3.2 Signed-off-by: Schuyler Eldridge --- src/main/scala/chisel3/util/LFSR.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/chisel3/util/LFSR.scala b/src/main/scala/chisel3/util/LFSR.scala index 5c295029..0458bd90 100644 --- a/src/main/scala/chisel3/util/LFSR.scala +++ b/src/main/scala/chisel3/util/LFSR.scala @@ -28,12 +28,12 @@ import chisel3.util.random.FibonacciLFSR * }}} */ // scalastyle:off magic.number -@deprecated("LFSR16 is deprecated in favor of the parameterized chisel3.util.random.LFSR", "3.3") +@deprecated("LFSR16 is deprecated in favor of the parameterized chisel3.util.random.LFSR", "3.2") object LFSR16 { /** Generates a 16-bit linear feedback shift register, returning the register contents. * @param increment optional control to gate when the LFSR updates. */ - @deprecated("Use chisel3.util.random.LFSR(16) for a 16-bit LFSR", "3.3") + @deprecated("Use chisel3.util.random.LFSR(16) for a 16-bit LFSR", "3.2") @chiselName def apply(increment: Bool = true.B): UInt = Vec( FibonacciLFSR -- cgit v1.2.3