diff options
author | Amitoj Kaur Chawla <[email protected]> | 2015-04-02 22:57:55 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2015-04-03 11:10:27 +0200 |
commit | e261e69e2d16b69eb712123b9e73bac50282b6a7 (patch) | |
tree | 88c658f62d529d774460632c03377956247384a4 | |
parent | 6ad6b5ed3e2472b399b567a2f036006bf25df467 (diff) |
Staging: sm750fb: Fixed indent of switch-case
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/sm750fb/ddk750_chip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c index 70d65d10b484..cd1508a35fc2 100644 --- a/drivers/staging/sm750fb/ddk750_chip.c +++ b/drivers/staging/sm750fb/ddk750_chip.c @@ -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; |