summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/util
diff options
context:
space:
mode:
authormergify[bot]2022-08-02 00:31:11 +0000
committerGitHub2022-08-02 00:31:11 +0000
commit6b658d740d976c7706c53c756acd069262d9ef59 (patch)
treec2d93170b29f51182c8139b017763bf8b971e998 /src/main/scala/chisel3/util
parent5d70874eba009d9f17886a2edd19ce0fa02a77b3 (diff)
Remove remaining chiselNames (#2635) (#2656)
(cherry picked from commit 8538269a14e0d5a1163298a79aa43b77a380aabc) Co-authored-by: Jared Barocsi <82000041+jared-barocsi@users.noreply.github.com>
Diffstat (limited to 'src/main/scala/chisel3/util')
-rw-r--r--src/main/scala/chisel3/util/Decoupled.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/scala/chisel3/util/Decoupled.scala b/src/main/scala/chisel3/util/Decoupled.scala
index b21bd04f..f8c8f9e9 100644
--- a/src/main/scala/chisel3/util/Decoupled.scala
+++ b/src/main/scala/chisel3/util/Decoupled.scala
@@ -7,7 +7,6 @@ package chisel3.util
import chisel3._
import chisel3.experimental.{requireIsChiselType, DataMirror, Direction}
-import chisel3.internal.naming._ // can't use chisel3_ version because of compile order
import scala.annotation.nowarn
@@ -136,7 +135,6 @@ object Decoupled {
*
* @note unsafe (and will error) on the producer (input) side of an IrrevocableIO
*/
- @chiselName
def apply[T <: Data](irr: IrrevocableIO[T]): DecoupledIO[T] = {
require(
DataMirror.directionOf(irr.bits) == Direction.Output,
@@ -403,7 +401,6 @@ object Queue {
* consumer.io.in <> Queue(producer.io.out, 16)
* }}}
*/
- @chiselName
def irrevocable[T <: Data](
enq: ReadyValidIO[T],
entries: Int = 2,