summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-05-10 16:29:27 -0400
committerGitHub2019-05-10 16:29:27 -0400
commite1aa5f3f5c0cdeb204047c3ca50801d9f7ea25f1 (patch)
tree965e98db7641dfba7438837d2e3bd9e59b16c5f4
parent9af531c3e46e3ce39b543b73f62b7deae6bdd9c7 (diff)
parent80d958b383259b7b124b5b207d9315cf112ab07b (diff)
Merge pull request #1094 from freechipsproject/lfsr16-deprecate-3.2
Change LFSR16 deprecation from 3.3 -> 3.2
-rw-r--r--src/main/scala/chisel3/util/LFSR.scala4
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