提交 ddf7355a 编写于 作者: S Stefan Roese 提交者: Tom Rini

common/console.c: Small coding style cleanup

Change some comments to match the U-Boot coding style rules.
Signed-off-by: NStefan Roese <sr@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: NSimon Glass <sjg@chromium.org>
上级 dd557770
......@@ -566,7 +566,8 @@ int printf(const char *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.
*/
i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
......@@ -582,7 +583,8 @@ int vprintf(const char *fmt, va_list args)
uint i;
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.
*/
i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册