mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +02:00
Convert CONSOLE_PRE_CONSOLE_BUFFER options to Kconfig
Move these option to Kconfig and tidy up existing uses. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Jagan Teki <jteki@openedev.com>
This commit is contained in:
@@ -202,7 +202,7 @@ static void console_putc(int file, const char c)
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PRE_CONSOLE_BUFFER
|
||||
#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
|
||||
static void console_puts_noserial(int file, const char *s)
|
||||
{
|
||||
int i;
|
||||
@@ -248,7 +248,7 @@ static inline void console_putc(int file, const char c)
|
||||
stdio_devices[file]->putc(stdio_devices[file], c);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PRE_CONSOLE_BUFFER
|
||||
#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
|
||||
static inline void console_puts_noserial(int file, const char *s)
|
||||
{
|
||||
if (strcmp(stdio_devices[file]->name, "serial") != 0)
|
||||
@@ -415,7 +415,7 @@ int tstc(void)
|
||||
#define PRE_CONSOLE_FLUSHPOINT1_SERIAL 0
|
||||
#define PRE_CONSOLE_FLUSHPOINT2_EVERYTHING_BUT_SERIAL 1
|
||||
|
||||
#ifdef CONFIG_PRE_CONSOLE_BUFFER
|
||||
#if CONFIG_IS_ENABLED(PRE_CONSOLE_BUFFER)
|
||||
#define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_PRE_CON_BUF_SZ)
|
||||
|
||||
static void pre_console_putc(const char c)
|
||||
|
Reference in New Issue
Block a user