From f541a277a8157fede6dd82c02577fd6959bdc1f0 Mon Sep 17 00:00:00 2001 From: David Harris Date: Sat, 7 Jan 2023 09:57:24 -0800 Subject: [PATCH] Remove unused CACHE_ENABLED parameter --- pipelined/src/ebu/ahbcacheinterface.sv | 2 +- pipelined/src/ebu/buscachefsm.sv | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pipelined/src/ebu/ahbcacheinterface.sv b/pipelined/src/ebu/ahbcacheinterface.sv index 9c01b0354..d94226ba0 100644 --- a/pipelined/src/ebu/ahbcacheinterface.sv +++ b/pipelined/src/ebu/ahbcacheinterface.sv @@ -113,7 +113,7 @@ module ahbcacheinterface #(parameter BEATSPERLINE, LINELEN, LOGWPL, CACHE_ENABLE flopen #(`AHBW/8) HWSTRBReg(HCLK, HREADY, BusByteMaskM[`AHBW/8-1:0], HWSTRB); - buscachefsm #(BeatCountThreshold, LOGWPL, CACHE_ENABLED) AHBBuscachefsm( + buscachefsm #(BeatCountThreshold, LOGWPL) AHBBuscachefsm( .HCLK, .HRESETn, .Flush, .BusRW, .Stall, .BusCommitted, .BusStall, .CaptureEn, .SelBusBeat, .CacheBusRW, .CacheBusAck, .BeatCount, .BeatCountDelayed, .HREADY, .HTRANS, .HWRITE, .HBURST); diff --git a/pipelined/src/ebu/buscachefsm.sv b/pipelined/src/ebu/buscachefsm.sv index 7d3d2bee7..a45424ba5 100644 --- a/pipelined/src/ebu/buscachefsm.sv +++ b/pipelined/src/ebu/buscachefsm.sv @@ -32,8 +32,7 @@ `define BURST_EN 1 // HCLK and clk must be the same clock! -module buscachefsm #(parameter integer BeatCountThreshold, - parameter integer LOGWPL, parameter logic CACHE_ENABLED ) +module buscachefsm #(parameter integer BeatCountThreshold, parameter integer LOGWPL) (input logic HCLK, input logic HRESETn,