Added missing static qualifier.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14456 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
6960a108af
commit
1c0a9da005
|
@ -415,7 +415,7 @@ static bool hal_lld_clock_check_tree(const halclkcfg_t *ccp) {
|
|||
*
|
||||
* @notapi
|
||||
*/
|
||||
bool hal_lld_clock_raw_config(const halclkcfg_t *ccp) {
|
||||
static bool hal_lld_clock_raw_config(const halclkcfg_t *ccp) {
|
||||
|
||||
/* Restoring default PWR settings related clocks and sleep modes.*/
|
||||
PWR->CR1 = PWR_CR1_VOS_0;
|
||||
|
@ -514,7 +514,7 @@ bool hal_lld_clock_raw_config(const halclkcfg_t *ccp) {
|
|||
*
|
||||
* @notapi
|
||||
*/
|
||||
bool hal_lld_clock_raw_switch(const halclkswc_t *cwp) {
|
||||
static bool hal_lld_clock_raw_switch(const halclkswc_t *cwp) {
|
||||
|
||||
/* PWR modes.*/
|
||||
PWR->CR1 = (PWR->CR1 & ~STM32_PWR_CR1_SAFE_ONLY_MASK) |
|
||||
|
|
|
@ -456,7 +456,7 @@ static bool hal_lld_clock_check_tree(const halclkcfg_t *ccp) {
|
|||
*
|
||||
* @notapi
|
||||
*/
|
||||
bool hal_lld_clock_raw_switch(const halclkcfg_t *ccp) {
|
||||
static bool hal_lld_clock_raw_switch(const halclkcfg_t *ccp) {
|
||||
|
||||
/* Restoring default PWR settings related clocks and sleep modes.*/
|
||||
PWR->CR1 = PWR_CR1_VOS_0;
|
||||
|
|
|
@ -547,7 +547,7 @@ static bool hal_lld_clock_check_tree(const halclkcfg_t *ccp) {
|
|||
*
|
||||
* @notapi
|
||||
*/
|
||||
bool hal_lld_clock_raw_switch(const halclkcfg_t *ccp) {
|
||||
static bool hal_lld_clock_raw_switch(const halclkcfg_t *ccp) {
|
||||
|
||||
/* Restoring default PWR settings related clocks and sleep modes.*/
|
||||
PWR->CR1 = PWR_CR1_VOS_0;
|
||||
|
|
|
@ -478,7 +478,7 @@ static bool hal_lld_clock_check_tree(const halclkcfg_t *ccp) {
|
|||
*
|
||||
* @notapi
|
||||
*/
|
||||
bool hal_lld_clock_raw_config(const halclkcfg_t *ccp) {
|
||||
static bool hal_lld_clock_raw_config(const halclkcfg_t *ccp) {
|
||||
|
||||
/* Restoring default PWR settings related clocks and sleep modes.*/
|
||||
PWR->CR1 = PWR_CR1_VOS_0;
|
||||
|
|
Loading…
Reference in New Issue