sched/Kconfig: Add ranges to START_YEAR, MONTH, and DATE

This commit is contained in:
Gregory Nutt 2016-10-27 18:13:31 -06:00
commit 4b16a64212
4 changed files with 5 additions and 4 deletions

View File

@ -278,7 +278,7 @@ void xtensa_add_region(void);
void up_lowputc(char ch);
#if CONFIG_NFILE_DESCRIPTORS > 0
void xtensa_earlyserialinit(void);
void xtensa_early_serial_initialize(void);
void xtensa_serial_initialize(void);
#else
# define xtensa_earlyserialinit()

View File

@ -47,6 +47,7 @@
#include <arch/irq.h>
#include "xtensa.h"
#include "esp32_cpuint.h"
/****************************************************************************
* Public Data

View File

@ -1168,7 +1168,7 @@ static bool esp32_txempty(struct uart_dev_s *dev)
****************************************************************************/
/****************************************************************************
* Name: xtensa_serial_initialize
* Name: xtensa_early_serial_initialize
*
* Description:
* Performs the low level UART initialization early in debug so that the
@ -1178,7 +1178,7 @@ static bool esp32_txempty(struct uart_dev_s *dev)
****************************************************************************/
#ifdef USE_EARLYSERIALINIT
void xtensa_serial_initialize(void)
void xtensa_early_serial_initialize(void)
{
/* NOTE: All GPIO configuration for the UARTs was performed in
* esp32_lowsetup

View File

@ -98,7 +98,7 @@ void IRAM_ATTR __start(void)
#ifdef USE_EARLYSERIALINIT
/* Perform early serial initialization */
xtensa_earlyserialinit();
xtensa_early_serial_initialize();
#endif
/* Initialize onboard resources */