Skip to content

Commit

Permalink
staging: sm750fb: Move switch case trailing statment
Browse files Browse the repository at this point in the history
This patch fixes the checkpatch.pl error:

ERROR: trailing statements should be on next line

Signed-off-by: Helen Fornazier <helen.fornazier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Helen Fornazier authored and Greg Kroah-Hartman committed Mar 26, 2015
1 parent c04051f commit ae59c46
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions drivers/staging/sm750fb/ddk750_chip.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,16 @@ unsigned int ddk750_getVMSize(void)
/* get frame buffer size from GPIO */
reg = FIELD_GET(PEEK32(MISC_CTRL), MISC_CTRL, LOCALMEM_SIZE);
switch (reg) {
case MISC_CTRL_LOCALMEM_SIZE_8M: data = MB(8); break; /* 8 Mega byte */
case MISC_CTRL_LOCALMEM_SIZE_16M: data = MB(16); break; /* 16 Mega byte */
case MISC_CTRL_LOCALMEM_SIZE_32M: data = MB(32); break; /* 32 Mega byte */
case MISC_CTRL_LOCALMEM_SIZE_64M: data = MB(64); break; /* 64 Mega byte */
default: data = 0;break;
case MISC_CTRL_LOCALMEM_SIZE_8M:
data = MB(8); break; /* 8 Mega byte */
case MISC_CTRL_LOCALMEM_SIZE_16M:
data = MB(16); break; /* 16 Mega byte */
case MISC_CTRL_LOCALMEM_SIZE_32M:
data = MB(32); break; /* 32 Mega byte */
case MISC_CTRL_LOCALMEM_SIZE_64M:
data = MB(64); break; /* 64 Mega byte */
default:
data = 0;break;
}
return data;

Expand Down

0 comments on commit ae59c46

Please sign in to comment.