diff --git a/src/main/scala/tilelink/Coalescing.scala b/src/main/scala/tilelink/Coalescing.scala index 06f6abf..6ee71e9 100644 --- a/src/main/scala/tilelink/Coalescing.scala +++ b/src/main/scala/tilelink/Coalescing.scala @@ -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