aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/SDMMCv1
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-04-25 07:13:02 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-04-25 07:13:02 +0000
commitf45d6a094caf868b4223999ee6cab4eb781ab60b (patch)
tree99e5cf02830fefb847344cc10186281f2cb04a39 /os/hal/ports/STM32/LLD/SDMMCv1
parent55bf3adb5cdf579b2de539753fbb54df9cf66bc8 (diff)
downloadChibiOS-f45d6a094caf868b4223999ee6cab4eb781ab60b.tar.gz
ChibiOS-f45d6a094caf868b4223999ee6cab4eb781ab60b.tar.bz2
ChibiOS-f45d6a094caf868b4223999ee6cab4eb781ab60b.zip
White space fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10175 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/LLD/SDMMCv1')
-rw-r--r--os/hal/ports/STM32/LLD/SDMMCv1/hal_sdc_lld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/LLD/SDMMCv1/hal_sdc_lld.c b/os/hal/ports/STM32/LLD/SDMMCv1/hal_sdc_lld.c
index 01a2eda9d..d22fb31d6 100644
--- a/os/hal/ports/STM32/LLD/SDMMCv1/hal_sdc_lld.c
+++ b/os/hal/ports/STM32/LLD/SDMMCv1/hal_sdc_lld.c
@@ -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]))