From e261e69e2d16b69eb712123b9e73bac50282b6a7 Mon Sep 17 00:00:00 2001 From: Amitoj Kaur Chawla Date: Thu, 2 Apr 2015 22:57:55 +0530 Subject: [PATCH] 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 Signed-off-by: Greg Kroah-Hartman --- drivers/staging/sm750fb/ddk750_chip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.11.0