Skip to content
Snippets Groups Projects
Commit ddf7355a authored by Stefan Roese's avatar Stefan Roese Committed by Tom Rini
Browse files

common/console.c: Small coding style cleanup


Change some comments to match the U-Boot coding style rules.

Signed-off-by: default avatarStefan Roese <sr@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent dd557770
No related branches found
No related tags found
No related merge requests found
...@@ -566,7 +566,8 @@ int printf(const char *fmt, ...) ...@@ -566,7 +566,8 @@ int printf(const char *fmt, ...)
va_start(args, fmt); va_start(args, fmt);
/* For this to work, printbuffer must be larger than /*
* For this to work, printbuffer must be larger than
* anything we ever want to print. * anything we ever want to print.
*/ */
i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
...@@ -582,7 +583,8 @@ int vprintf(const char *fmt, va_list args) ...@@ -582,7 +583,8 @@ int vprintf(const char *fmt, va_list args)
uint i; uint i;
char printbuffer[CONFIG_SYS_PBSIZE]; char printbuffer[CONFIG_SYS_PBSIZE];
/* For this to work, printbuffer must be larger than /*
* For this to work, printbuffer must be larger than
* anything we ever want to print. * anything we ever want to print.
*/ */
i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args); i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment