Fix unused warning in Coalescing

This commit is contained in:
Hansung Kim
2023-10-15 23:24:32 -07:00
parent 78012800e7
commit 5b356b735c

View File

@@ -2230,7 +2230,7 @@ class CoalescerXbarImpl(outer: CoalescerXbar,
// For the uncoalesced data response
(outer.nonCoalNarrowNodes zip io.nonCoalResps).foreach{
case(node,resp) =>
val (tlOut, edgeOut) = node.out(0)
val (tlOut, _) = node.out(0)
val nonCoalResp = Wire(respNonCoalEntryT)
nonCoalResp.fromTLD(tlOut.d.bits)
tlOut.d.ready := resp.ready
@@ -2246,7 +2246,7 @@ class CoalescerXbarImpl(outer: CoalescerXbar,
)
outer.coalReqNodes.zipWithIndex.foreach{
case(node, idx) =>
val (tlOut, edgeOut) = node.out(0)
val (tlOut, _) = node.out(0)
coalRespRRArbiter.io.in(idx) <> tlOut.d
}
//Connect output of arbiter to coalesced reponse output