Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions hw/opentitan/ot_spi_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -1330,8 +1330,9 @@ static void ot_spi_device_flash_exec_sw_command(OtSPIDeviceState *s, uint8_t rx)
ot_spi_device_flash_init_payload(s);
} else {
/*
* Any payload sent with a non-uploaded SW command is ignored. The
* behaviour of this error case is not well specified for the hardware.
* Any payload sent with a non-uploaded SW command is ignored.
* The behaviour of this error case is not well specified for
* the hardware.
*/
FLASH_CHANGE_STATE(s, DONE);
}
Expand All @@ -1345,7 +1346,8 @@ static void ot_spi_device_flash_exec_sw_command(OtSPIDeviceState *s, uint8_t rx)
} else {
/*
* Any payload sent with a non-uploaded SW command is ignored. The
* behaviour of this error case is not well specified for the hardware.
* behaviour of this error case is not well specified for the
* hardware.
*/
FLASH_CHANGE_STATE(s, DONE);
}
Expand Down
Loading