diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-08-26 18:38:24 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-08-26 18:38:24 +0000 |
commit | 425bc3d030f266e8dd09ddb5dff8302ed67f4390 (patch) | |
tree | fb70f3737b11e182b3d0ec2984b3f3f96186868a /os | |
parent | c0df75d7938e10e0916c6a64b1376626de1f7a4f (diff) | |
download | ChibiOS-425bc3d030f266e8dd09ddb5dff8302ed67f4390.tar.gz ChibiOS-425bc3d030f266e8dd09ddb5dff8302ed67f4390.tar.bz2 ChibiOS-425bc3d030f266e8dd09ddb5dff8302ed67f4390.zip |
[FSMC SRAM] Naming convention fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7201 35acf78f-673a-0410-8e92-d51de3d6d3f4
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 |