Skip to content

Commit

Permalink
axi4: change AXID to A[W|R]ID in scaladoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hcook committed Oct 26, 2020
1 parent 5362005 commit c5db42d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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 @@ -16,7 +16,7 @@ case class AXI4ExtraIdField(width: Int) extends SimpleBundleField(AXI4ExtraId)(U
* which values are expected to be echoed back to this adapter alongside any downstream response messages,
* and are then prepended to the RID and BID field to restore the original identifier.
*
* @param idBits is the desired number of AXID bits to be used
* @param idBits is the desired number of A[W|R]ID bits to be used
*/
class AXI4IdIndexer(idBits: Int)(implicit p: Parameters) extends LazyModule
{
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/amba/axi4/UserYanker.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import freechips.rocketchip.util._
* storing them in queues and echoing them back when matching response messages are recevied.
*
* It also optionally rate limits the number of transactions that can be in flight simultaneously
* per FIFO domain / AXID.
* per FIFO domain / A[W|R]ID.
*
* @param capMaxFlight is an optional maximum number of transactions that can be in flight per AXID.
* @param capMaxFlight is an optional maximum number of transactions that can be in flight per A[W|R]ID.
*/
class AXI4UserYanker(capMaxFlight: Option[Int] = None)(implicit p: Parameters) extends LazyModule
{
Expand Down

0 comments on commit c5db42d

Please sign in to comment.