aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-01-22 09:27:59 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-01-22 09:27:59 +0000
commit18a0ce73d9310d68ff8c02faffa255a3aadd3ab0 (patch)
treef83112f2cac3f80bac5e474ebe5ae69ea0557390 /os
parentf231e6dbddd39a9f41f83cb2b3b0e5ec6d88875d (diff)
downloadChibiOS-18a0ce73d9310d68ff8c02faffa255a3aadd3ab0.tar.gz
ChibiOS-18a0ce73d9310d68ff8c02faffa255a3aadd3ab0.tar.bz2
ChibiOS-18a0ce73d9310d68ff8c02faffa255a3aadd3ab0.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3849 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r--os/hal/platforms/STM32/sdc_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/sdc_lld.c b/os/hal/platforms/STM32/sdc_lld.c
index d6947cbbf..42883e3b0 100644
--- a/os/hal/platforms/STM32/sdc_lld.c
+++ b/os/hal/platforms/STM32/sdc_lld.c
@@ -708,7 +708,7 @@ bool_t sdc_lld_read(SDCDriver *sdcp, uint32_t startblk,
bool_t sdc_lld_write(SDCDriver *sdcp, uint32_t startblk,
const uint8_t *buf, uint32_t n) {
- #if STM32_SDC_UNALIGNED_SUPPORT
+#if STM32_SDC_UNALIGNED_SUPPORT
if (((unsigned)buf & 3) != 0) {
uint32_t i;
for (i = 0; i < n; i++) {