Skip to content

Commit 79d6c51

Browse files
committed
recovery: fix DEVICE_STATUS length
Signed-off-by: Karol Gugala <[email protected]>
1 parent 7c8a0c4 commit 79d6c51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/recovery/recovery_executor.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ module recovery_executor
281281
unique case (cmd_cmd_i)
282282
CMD_PROT_CAP: csr_length <= 'd15;
283283
CMD_DEVICE_ID: csr_length <= 'd24;
284-
CMD_DEVICE_STATUS: csr_length <= 'd8;
284+
CMD_DEVICE_STATUS: csr_length <= 'd7;
285285
CMD_DEVICE_RESET: csr_length <= 'd3;
286286
CMD_RECOVERY_CTRL: csr_length <= 'd3;
287287
CMD_RECOVERY_STATUS: csr_length <= 'd2;

0 commit comments

Comments
 (0)