(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
@@ -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
+4 -4
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,9 +73,10 @@
* to indicate the nature of any failure.
*
****************************************************************************/
int up_timer_init(FAR const char *devpath, int timer)
{
return stm32_timer_initialize(devpath, timer);
return stm32_timer_initialize(devpath, timer);
}
#endif
+2 -1
View File
@@ -72,9 +72,10 @@
* to indicate the nature of any failure.
*
****************************************************************************/
int up_timer_init(FAR const char *devpath, int timer)
{
return stm32_timer_initialize(devpath, timer);
return stm32_timer_initialize(devpath, timer);
}
#endif
@@ -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