1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

raiden_debug_spi.c: Fix indents to be consistent

Change-Id: I414d6e5fcb590a006dd53fa93df80ec2a765c5d1
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/39308
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Edward O'Callaghan 2020-03-05 14:50:46 +11:00 committed by Edward O'Callaghan
parent a43e44b6ab
commit 4847496062

View File

@ -151,12 +151,12 @@ static int send_command(struct flashctx *flash,
int ret;
if (write_count > MAX_PACKET_SIZE - PACKET_HEADER_SIZE) {
msg_perr("Raiden: invalid write_count of %d\n", write_count);
msg_perr("Raiden: Invalid write_count of %d\n", write_count);
return SPI_INVALID_LENGTH;
}
if (read_count > MAX_PACKET_SIZE - PACKET_HEADER_SIZE) {
msg_perr("Raiden: invalid read_count of %d\n", read_count);
msg_perr("Raiden: Invalid read_count of %d\n", read_count);
return SPI_INVALID_LENGTH;
}