From 8876d83640cb28857528da83460285bc94113962 Mon Sep 17 00:00:00 2001 From: "Wesley W. Terpstra" Date: Fri, 16 Sep 2016 17:26:50 -0700 Subject: [PATCH] Prci: preserve Andrew's preferred clint name --- src/main/scala/uncore/devices/Prci.scala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/scala/uncore/devices/Prci.scala b/src/main/scala/uncore/devices/Prci.scala index ff9800dc..1d324005 100644 --- a/src/main/scala/uncore/devices/Prci.scala +++ b/src/main/scala/uncore/devices/Prci.scala @@ -87,3 +87,6 @@ class CoreplexLocalInterrupter(c: CoreplexLocalInterrupterConfig)(implicit val p extends TLRegisterRouter(c.address, 0, c.size, None, c.beatBytes, false)( new TLRegBundle((c, p), _) with CoreplexLocalInterrupterBundle)( new TLRegModule((c, p), _, _) with CoreplexLocalInterrupterModule) +{ + override def name = "clint" // defaul is "CoreplexLocalInterrupter" +}