OSDN Git Service

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 70d65d1..cd1508a 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;