From: Luke Kenneth Casson Leighton Date: Sun, 30 Jan 2022 21:30:34 +0000 (+0000) Subject: remove unneeded parameter X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a91b7cc906451eff9e3877390a8c69da9db2a91;p=soc.git remove unneeded parameter --- diff --git a/src/soc/experiment/icache.py b/src/soc/experiment/icache.py index 58e33c25..e594bf8a 100644 --- a/src/soc/experiment/icache.py +++ b/src/soc/experiment/icache.py @@ -669,7 +669,7 @@ class ICache(FetchUnitInterface, Elaboratable): sync += r.state.eq(State.WAIT_ACK) def icache_miss_wait_ack(self, m, r, replace_way, inval_in, - cache_tags, cache_valids, stbs_done): + cache_valids, stbs_done): comb = m.d.comb sync = m.d.sync @@ -766,7 +766,7 @@ class ICache(FetchUnitInterface, Elaboratable): cache_tags, cache_valids) self.icache_miss_wait_ack(m, r, replace_way, inval_in, - cache_tags, cache_valids, stbs_done) + cache_valids, stbs_done) # TLB miss and protection fault processing with m.If(flush_in | m_in.tlbld):