Change some names to conform to naming standard

This commit is contained in:
Gregory Nutt 2016-02-23 07:18:08 -06:00
parent fb41199e2a
commit 2055f34ee6
4 changed files with 8 additions and 8 deletions

View File

@ -134,7 +134,7 @@ void weak_function stm32_spidev_initialize(void);
#endif
/****************************************************************************
* Name: up_timer_init
* Name: stm32_timer_driver_setup
*
* Description:
* Configure the timer driver.
@ -150,7 +150,7 @@ void weak_function stm32_spidev_initialize(void);
****************************************************************************/
#ifdef CONFIG_TIMER
int up_timer_init(FAR const char *devpath, int timer);
int stm32_timer_driver_setup(FAR const char *devpath, int timer);
#endif
#endif /* __CONFIGS_NUCLEO_F303RE_SRC_NUCLEO_F303RE_H */

View File

@ -58,7 +58,7 @@
****************************************************************************/
/****************************************************************************
* Name: up_timer_init
* Name: stm32_timer_driver_setup
*
* Description:
* Configure the timer driver.
@ -74,7 +74,7 @@
*
****************************************************************************/
int up_timer_init(FAR const char *devpath, int timer)
int stm32_timer_driver_setup(FAR const char *devpath, int timer)
{
return stm32_timer_initialize(devpath, timer);
}

View File

@ -58,7 +58,7 @@
****************************************************************************/
/****************************************************************************
* Name: up_timer_init
* Name: stm32_timer_driver_setup
*
* Description:
* Configure the timer driver.
@ -73,7 +73,7 @@
*
****************************************************************************/
int up_timer_init(FAR const char *devpath, int timer)
int stm32_timer_driver_setup(FAR const char *devpath, int timer)
{
return stm32_timer_initialize(devpath, timer);
}

View File

@ -602,7 +602,7 @@ int stm32_rgbled_setup(void);
#endif
/****************************************************************************
* Name: up_timer_init
* Name: stm32_timer_driver_setup
*
* Description:
* Configure the timer driver.
@ -619,7 +619,7 @@ int stm32_rgbled_setup(void);
****************************************************************************/
#ifdef CONFIG_TIMER
int up_timer_init(FAR const char *devpath, int timer);
int stm32_timer_driver_setup(FAR const char *devpath, int timer);
#endif
#endif /* __ASSEMBLY__ */