From c97e3fa776e3de2865fdd698958001fb230d38e1 Mon Sep 17 00:00:00 2001 From: Robert Schilling Date: Tue, 7 Jan 2025 09:18:22 +0100 Subject: [PATCH] [hw,spi_host,rtl] CSB is NumCS wide This was mistakenly changed to CSW in the last PR. Revert it back. Signed-off-by: Robert Schilling --- hw/ip/spi_host/rtl/spi_host_fsm.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ip/spi_host/rtl/spi_host_fsm.sv b/hw/ip/spi_host/rtl/spi_host_fsm.sv index 08794b0ab34d9..52a3478522ae2 100644 --- a/hw/ip/spi_host/rtl/spi_host_fsm.sv +++ b/hw/ip/spi_host/rtl/spi_host_fsm.sv @@ -19,7 +19,7 @@ module spi_host_fsm input command_valid_i, output logic command_ready_o, output logic sck_o, - output logic [CSW-1:0] csb_o, + output logic [NumCS-1:0] csb_o, output logic [3:0] sd_en_o, output logic last_read_o, output logic last_write_o,