lib: code cleanup
authorDamien Le Moal <damien.lemoal@wdc.com>
Fri, 18 Jan 2019 04:45:08 +0000 (13:45 +0900)
committerAnup Patel <anup@brainfault.org>
Mon, 21 Jan 2019 04:28:33 +0000 (09:58 +0530)
Use commonly accepted styles: newlines after declarations and before
return to make the code more readable.

Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
lib/sbi_console.c

index 6923b9a..36a4414 100644 (file)
@@ -331,6 +331,7 @@ out:
        }
        if (out)
                **out = '\0';
+
        return pc;
 }
 
@@ -338,9 +339,11 @@ int sbi_sprintf(char *out, const char *format, ...)
 {
        va_list args;
        int retval;
+
        va_start(args, format);
        retval = print(&out, NULL, format, args);
        va_end(args);
+
        return retval;
 }
 
@@ -348,9 +351,11 @@ int sbi_snprintf(char *out, u32 out_sz, const char *format, ...)
 {
        va_list args;
        int retval;
+
        va_start(args, format);
        retval = print(&out, &out_sz, format, args);
        va_end(args);
+
        return retval;
 }