(Hopefully) cosmetic changes from review of recent merges for conformance to coding standard

This commit is contained in:
Gregory Nutt 2015-11-17 16:53:49 -06:00
parent 1a2191a8bf
commit 5937f9930d
4 changed files with 10 additions and 6 deletions

View File

@ -148,6 +148,7 @@ void weak_function stm32_spiinitialize(void);
* to indicate the nature of any failure.
*
****************************************************************************/
#ifdef CONFIG_TIMER
int up_timer_init(FAR const char *devpath, int timer);
#endif

View File

@ -35,8 +35,6 @@
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
@ -66,7 +64,8 @@
* Configure the timer driver.
*
* Input Parameters:
* devpath - The full path to the timer device. This should be of the form /dev/timer0
* devpath - The full path to the timer device. This should be of the
* form /dev/timer0
* timer - The timer's number.
*
* Returned Values:
@ -74,6 +73,7 @@
* to indicate the nature of any failure.
*
****************************************************************************/
int up_timer_init(FAR const char *devpath, int timer)
{
return stm32_timer_initialize(devpath, timer);

View File

@ -72,6 +72,7 @@
* to indicate the nature of any failure.
*
****************************************************************************/
int up_timer_init(FAR const char *devpath, int timer)
{
return stm32_timer_initialize(devpath, timer);

View File

@ -553,7 +553,8 @@ int stm32_max6675initialize(FAR const char *devpath);
* Configure the timer driver.
*
* Input Parameters:
* devpath - The full path to the timer device. This should be of the form /dev/timer0
* devpath - The full path to the timer device. This should be of the
* form /dev/timer0
* timer - The timer's number.
*
* Returned Values:
@ -561,6 +562,7 @@ int stm32_max6675initialize(FAR const char *devpath);
* to indicate the nature of any failure.
*
****************************************************************************/
#ifdef CONFIG_TIMER
int up_timer_init(FAR const char *devpath, int timer);
#endif