White space fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10175 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
55bf3adb5c
commit
f45d6a094c
|
@ -145,7 +145,7 @@ static bool sdc_lld_prepare_read(SDCDriver *sdcp, uint32_t startblk,
|
|||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
return HAL_FAILED;
|
||||
}
|
||||
else{
|
||||
else {
|
||||
/* Send read single block command.*/
|
||||
if (sdc_lld_send_cmd_short_crc(sdcp, MMCSD_CMD_READ_SINGLE_BLOCK,
|
||||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
|
@ -183,7 +183,7 @@ static bool sdc_lld_prepare_write(SDCDriver *sdcp, uint32_t startblk,
|
|||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
return HAL_FAILED;
|
||||
}
|
||||
else{
|
||||
else {
|
||||
/* Write single block command.*/
|
||||
if (sdc_lld_send_cmd_short_crc(sdcp, MMCSD_CMD_WRITE_BLOCK,
|
||||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
|
|
|
@ -186,7 +186,7 @@ static bool sdc_lld_prepare_read(SDCDriver *sdcp, uint32_t startblk,
|
|||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
return HAL_FAILED;
|
||||
}
|
||||
else{
|
||||
else {
|
||||
/* Send read single block command.*/
|
||||
if (sdc_lld_send_cmd_short_crc(sdcp, MMCSD_CMD_READ_SINGLE_BLOCK,
|
||||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
|
@ -224,7 +224,7 @@ static bool sdc_lld_prepare_write(SDCDriver *sdcp, uint32_t startblk,
|
|||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
return HAL_FAILED;
|
||||
}
|
||||
else{
|
||||
else {
|
||||
/* Write single block command.*/
|
||||
if (sdc_lld_send_cmd_short_crc(sdcp, MMCSD_CMD_WRITE_BLOCK,
|
||||
startblk, resp) || MMCSD_R1_ERROR(resp[0]))
|
||||
|
|
Loading…
Reference in New Issue