summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2015-11-16 15:26:32 +0100
committerTom Rini <trini@konsulko.com>2015-11-23 10:56:07 -0500
commitddf7355a73f2e01bd8eec4b939d8749ac22ff574 (patch)
tree16bde8371ef140444ca8906052610ed15425d3a2
parentdd5577703b99170e88fad3994c7865d1e9bc2874 (diff)
downloadblackbird-obmc-uboot-ddf7355a73f2e01bd8eec4b939d8749ac22ff574.tar.gz
blackbird-obmc-uboot-ddf7355a73f2e01bd8eec4b939d8749ac22ff574.zip
common/console.c: Small coding style cleanup
Change some comments to match the U-Boot coding style rules. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Simon Glass <sjg@chromium.org> Acked-by: Simon Glass <sjg@chromium.org>
-rw-r--r--common/console.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/console.c b/common/console.c
index fff03c952c..75f84bdc95 100644
--- a/common/console.c
+++ b/common/console.c
@@ -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);
OpenPOWER on IntegriCloud