]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: sm750fb: Fixed indent of switch-case
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Thu, 2 Apr 2015 17:27:55 +0000 (22:57 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Apr 2015 09:10:27 +0000 (11:10 +0200)
Fixed indent of switch-case by adding space using tabs.
Problem found using checkpatch.pl
ERROR: space required after that ';' (ctx:VxV)

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/ddk750_chip.c

index 70d65d10b484cd4c8eee68cb83a816a6b86b48c5..cd1508a35fc2057ea3d3ecbdc9adf4524aa25c28 100644 (file)
@@ -245,7 +245,8 @@ unsigned int ddk750_getVMSize(void)
        case MISC_CTRL_LOCALMEM_SIZE_64M:
                data = MB(64); break; /* 64 Mega byte */
        default:
-               data = 0;break;
+               data = 0;
+               break;
        }
        return data;