Skip to content

Commit

Permalink
axi4: dont include <>s around any string that you dont want to be int…
Browse files Browse the repository at this point in the history
…erpreted as a graphml xml tag (#2638)
  • Loading branch information
hcook authored Oct 22, 2020
1 parent 7567c8b commit fea4365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/amba/axi4/IdIndexer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class AXI4IdIndexer(idBits: Int)(implicit p: Parameters) extends LazyModule
maxFlight = old.maxFlight.flatMap { o => m.maxFlight.map { n => o+n } })
}
}
names.foreach { n => if (n.isEmpty) n += "<unused>" }
names.foreach { n => if (n.isEmpty) n += "(unused)" }
val bits = log2Ceil(mp.endId) - idBits
val field = if (bits > 0) Seq(AXI4ExtraIdField(bits)) else Nil
mp.copy(
Expand Down

0 comments on commit fea4365

Please sign in to comment.