aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/hal/platforms/STM32/sdc_lld.h2
-rw-r--r--testhal/STM32/SDIO/halconf.h2
-rw-r--r--testhal/STM32/SDIO/main.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/platforms/STM32/sdc_lld.h b/os/hal/platforms/STM32/sdc_lld.h
index 8ed64a5b0..729244e91 100644
--- a/os/hal/platforms/STM32/sdc_lld.h
+++ b/os/hal/platforms/STM32/sdc_lld.h
@@ -108,7 +108,7 @@ typedef struct SDCDriver SDCDriver;
* @note It could be empty on some architectures.
*/
typedef struct {
-
+ uint32_t dummy;
} SDCConfig;
/**
diff --git a/testhal/STM32/SDIO/halconf.h b/testhal/STM32/SDIO/halconf.h
index 7f129acc6..57022db5b 100644
--- a/testhal/STM32/SDIO/halconf.h
+++ b/testhal/STM32/SDIO/halconf.h
@@ -73,7 +73,7 @@
* @brief Enables the ICU subsystem.
*/
#if !defined(HAL_USE_ICU) || defined(__DOXYGEN__)
-#define HAL_USE_ICU TRUE
+#define HAL_USE_ICU FALSE
#endif
/**
diff --git a/testhal/STM32/SDIO/main.c b/testhal/STM32/SDIO/main.c
index 3e7971f49..3194921f4 100644
--- a/testhal/STM32/SDIO/main.c
+++ b/testhal/STM32/SDIO/main.c
@@ -25,6 +25,7 @@
* SDIO configuration.
*/
static const SDCConfig sdccfg = {
+ 0
};
/*
@@ -53,5 +54,4 @@ int main(void) {
while (TRUE) {
chThdSleepMilliseconds(500);
}
- return 0;
}