diff options
| author | Schuyler Eldridge | 2019-05-10 16:06:58 -0400 |
|---|---|---|
| committer | Schuyler Eldridge | 2019-05-10 16:06:58 -0400 |
| commit | 80d958b383259b7b124b5b207d9315cf112ab07b (patch) | |
| tree | 965e98db7641dfba7438837d2e3bd9e59b16c5f4 | |
| parent | 9af531c3e46e3ce39b543b73f62b7deae6bdd9c7 (diff) | |
Change LFSR16 deprecation from 3.3 -> 3.2
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
| -rw-r--r-- | src/main/scala/chisel3/util/LFSR.scala | 4 |
1 files 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 |
