From: Amitoj Kaur Chawla Date: Thu, 2 Apr 2015 17:27:55 +0000 (+0530) Subject: Staging: sm750fb: Fixed indent of switch-case X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e261e69e2d16b69eb712123b9e73bac50282b6a7;p=linux-beck.git 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 --- 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;