mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
sf: Fix code cleanup
- line over 80 characters. - CHECK: Alignment should match open parenthesis Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
This commit is contained in:
parent
d0be616fe8
commit
fd35ca5c20
1 changed files with 6 additions and 5 deletions
|
|
@ -42,7 +42,8 @@ static int spi_flash_read_write(struct spi_slave *spi,
|
|||
debug("SF: Failed to send command (%zu bytes): %d\n",
|
||||
cmd_len, ret);
|
||||
} else if (data_len != 0) {
|
||||
ret = spi_xfer(spi, data_len * 8, data_out, data_in, SPI_XFER_END);
|
||||
ret = spi_xfer(spi, data_len * 8, data_out, data_in,
|
||||
SPI_XFER_END);
|
||||
if (ret)
|
||||
debug("SF: Failed to transfer %zu bytes of data: %d\n",
|
||||
data_len, ret);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue