X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=post%2Fpost.c;h=6687e0b75cac897decf160dc41309dd773dc45a6;hb=1b6ae82a5abb4cbedb0d6cb262526173f4efa486;hp=8fef0c34127d2a635cbe83db5895ad1f819ff8a9;hpb=470135be276b2d92c6da464c68839202d4ff0d08;p=oweals%2Fu-boot.git diff --git a/post/post.c b/post/post.c index 8fef0c3412..6687e0b75c 100644 --- a/post/post.c +++ b/post/post.c @@ -1,12 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2002 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * - * SPDX-License-Identifier: GPL-2.0+ */ #include +#include +#include +#include +#include #include +#include #include #include #include @@ -15,10 +19,6 @@ #include #endif -#ifdef CONFIG_LOGBUFFER -#include -#endif - DECLARE_GLOBAL_DATA_PTR; #define POST_MAX_NUMBER 32 @@ -407,13 +407,8 @@ int post_log(char *format, ...) vsprintf(printbuffer, format, args); va_end(args); -#ifdef CONFIG_LOGBUFFER - /* Send to the logbuffer */ - logbuff_log(printbuffer); -#else /* Send to the stdout file */ puts(printbuffer); -#endif return 0; }