boards/xtensa/esp32/*/esP32_bringup.c: Remove unused comments blocks and

garbage at the end of the files.

Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
This commit is contained in:
Abdelatif Guettouche 2021-03-31 23:38:17 +02:00 committed by Xiang Xiao
parent b925c73110
commit f07b64d1af
3 changed files with 7 additions and 16 deletions

View File

@ -76,10 +76,6 @@
#include "esp32-devkitc.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Public Functions
****************************************************************************/
@ -195,6 +191,7 @@ int esp32_bringup(void)
/* First, register the timer drivers and let timer 1 for oneshot
* if it is enabled.
*/
#ifdef CONFIG_TIMER
#ifdef CONFIG_ESP32_TIMER0
@ -208,7 +205,7 @@ int esp32_bringup(void)
}
#endif
#if defined(CONFIG_ESP32_TIMER1) && !defined(CONFIG_ONESHOT)
#if defined(CONFIG_ESP32_TIMER1) && !defined(CONFIG_ONESHOT)
ret = esp32_timer_initialize("/dev/timer1", TIMER1);
if (ret < 0)
{
@ -230,7 +227,7 @@ int esp32_bringup(void)
}
#endif
#ifdef CONFIG_ESP32_TIMER3
#ifdef CONFIG_ESP32_TIMER3
ret = esp32_timer_initialize("/dev/timer3", TIMER3);
if (ret < 0)
{

View File

@ -68,10 +68,6 @@
#include "esp32-ethernet-kit.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Public Functions
****************************************************************************/
@ -170,6 +166,7 @@ int esp32_bringup(void)
/* First, register the timer drivers and let timer 1 for oneshot
* if it is enabled.
*/
#ifdef CONFIG_TIMER
#ifdef CONFIG_ESP32_TIMER0
@ -183,7 +180,7 @@ int esp32_bringup(void)
}
#endif
#if defined(CONFIG_ESP32_TIMER1) && !defined(CONFIG_ONESHOT)
#if defined(CONFIG_ESP32_TIMER1) && !defined(CONFIG_ONESHOT)
ret = esp32_timer_initialize("/dev/timer1", TIMER1);
if (ret < 0)
{
@ -205,7 +202,7 @@ int esp32_bringup(void)
}
#endif
#ifdef CONFIG_ESP32_TIMER3
#ifdef CONFIG_ESP32_TIMER3
ret = esp32_timer_initialize("/dev/timer3", TIMER3);
if (ret < 0)
{

View File

@ -77,10 +77,6 @@
#include "esp32-wrover-kit.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Public Functions
****************************************************************************/
@ -179,6 +175,7 @@ int esp32_bringup(void)
/* First, register the timer drivers and let timer 1 for oneshot
* if it is enabled.
*/
#ifdef CONFIG_TIMER
#ifdef CONFIG_ESP32_TIMER0