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:
Giovanni Di Sirio 2021-06-01 12:13:57 +00:00
parent 6960a108af
commit 1c0a9da005
4 changed files with 5 additions and 5 deletions

View File

@ -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) |

View File

@ -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;

View File

@ -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;

View File

@ -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;