diff options
author | Romain Reignier <rom.reignier@gmail.com> | 2018-03-12 21:12:24 +0100 |
---|---|---|
committer | Romain Reignier <rom.reignier@gmail.com> | 2018-03-12 21:20:32 +0100 |
commit | 26a11251bfb8d951a5ba50da190f43d1d3555725 (patch) | |
tree | 02ea1f8f2150af2e1df978406c60e78fcb15de90 | |
parent | 918149d48d908cf8441cbd41571b768918a4d7b1 (diff) | |
download | ChibiOS-Contrib-26a11251bfb8d951a5ba50da190f43d1d3555725.tar.gz ChibiOS-Contrib-26a11251bfb8d951a5ba50da190f43d1d3555725.tar.bz2 ChibiOS-Contrib-26a11251bfb8d951a5ba50da190f43d1d3555725.zip |
hal_fsmc: update to new RCC API
-rw-r--r-- | os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.c b/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.c index 500b2e7..71c6ada 100644 --- a/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.c +++ b/os/hal/ports/STM32/LLD/FSMCv1/hal_fsmc.c @@ -159,7 +159,7 @@ void fsmc_stop(FSMCDriver *fsmcp) { #if HAL_USE_NAND nvicDisableVector(STM32_FSMC_NUMBER); #endif - rccDisableFSMC(FALSE); + rccDisableFSMC(); } #endif /* STM32_FSMC_USE_FSMC1 */ |