diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c | 6 | ||||
-rw-r--r-- | os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c b/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c index 5dbfe1eec..44f7ff26c 100644 --- a/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c +++ b/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c @@ -90,7 +90,7 @@ SRAMDriver SRAMD4; * * @notapi */ -void fsmc_sram_init(void) { +void fsmcSramInit(void) { fsmc_init(); @@ -123,7 +123,7 @@ void fsmc_sram_init(void) { * * @notapi */ -void fsmc_sram_start(SRAMDriver *sramp, const SRAMConfig *cfgp) { +void fsmcSramStart(SRAMDriver *sramp, const SRAMConfig *cfgp) { if (FSMCD1.state == FSMC_STOP) fsmc_start(&FSMCD1); @@ -145,7 +145,7 @@ void fsmc_sram_start(SRAMDriver *sramp, const SRAMConfig *cfgp) { * * @notapi */ -void fsmc_sram_stop(SRAMDriver *sramp) { +void fsmcSramStop(SRAMDriver *sramp) { if (sramp->state == SRAM_READY) { sramp->sram->BCR &= ~FSMC_BCR_MBKEN; diff --git a/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.h b/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.h index 53c79fdc9..0113a04cb 100644 --- a/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.h +++ b/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.h @@ -159,9 +159,9 @@ extern SRAMDriver SRAMD4; #ifdef __cplusplus extern "C" { #endif - void fsmc_sram_init(void); - void fsmc_sram_start(SRAMDriver *sramp, const SRAMConfig *cfgp); - void fsmc_sram_stop(SRAMDriver *sramp); + void fsmcSramInit(void); + void fsmcSramStart(SRAMDriver *sramp, const SRAMConfig *cfgp); + void fsmcSramStop(SRAMDriver *sramp); #ifdef __cplusplus } #endif |