]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: unisys: fix spacing in parser.c
authorBenjamin Romer <bromer@comcast.net>
Mon, 18 Aug 2014 13:34:52 +0000 (09:34 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 26 Aug 2014 19:15:22 +0000 (12:15 -0700)
Fix the two spacing errors in parser.c.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorchipset/parser.c

index 86fa2949dc4e61e911661bd2c8188fda78fc4f7f..661aaae9b15470a145a8c81821b3e6d80e596987 100644 (file)
@@ -84,6 +84,7 @@ parser_init_guts(u64 addr, u32 bytes, BOOL isLocal,
        ctx->byte_stream = FALSE;
        if (isLocal) {
                void *p;
+
                if (addr > virt_to_phys(high_memory - 1)) {
                        ERRDRV("%s - bad local address (0x%-16.16Lx for %lu)",
                               __func__,
@@ -257,6 +258,7 @@ static int
 string_length_no_trail(char *s, int len)
 {
        int i = len - 1;
+
        while (i >= 0) {
                if (!isspace(s[i]))
                        return i + 1;