2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-19 02:34:01 +08:00

staging: sm750fb: add curly braces to if-statements

Add curly braces to if-statements for style compliance.
These cases are found by checkpatch.pl

Signed-off-by: Katie Dunne <kdunne@mail.ccsf.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Katie Dunne 2017-02-19 20:38:57 -08:00 committed by Greg Kroah-Hartman
parent 06f6c8d401
commit 144634a6b4

View File

@ -954,23 +954,23 @@ static void sm750fb_setup(struct sm750_dev *sm750_dev, char *src)
dev_info(&sm750_dev->pdev->dev, "opt=%s\n", opt);
dev_info(&sm750_dev->pdev->dev, "src=%s\n", src);
if (!strncmp(opt, "swap", strlen("swap")))
if (!strncmp(opt, "swap", strlen("swap"))) {
swap = 1;
else if (!strncmp(opt, "nocrt", strlen("nocrt")))
} else if (!strncmp(opt, "nocrt", strlen("nocrt"))) {
sm750_dev->nocrt = 1;
else if (!strncmp(opt, "36bit", strlen("36bit")))
} else if (!strncmp(opt, "36bit", strlen("36bit"))) {
sm750_dev->pnltype = sm750_doubleTFT;
else if (!strncmp(opt, "18bit", strlen("18bit")))
} else if (!strncmp(opt, "18bit", strlen("18bit"))) {
sm750_dev->pnltype = sm750_dualTFT;
else if (!strncmp(opt, "24bit", strlen("24bit")))
} else if (!strncmp(opt, "24bit", strlen("24bit"))) {
sm750_dev->pnltype = sm750_24TFT;
else if (!strncmp(opt, "nohwc0", strlen("nohwc0")))
} else if (!strncmp(opt, "nohwc0", strlen("nohwc0"))) {
g_hwcursor &= ~0x1;
else if (!strncmp(opt, "nohwc1", strlen("nohwc1")))
} else if (!strncmp(opt, "nohwc1", strlen("nohwc1"))) {
g_hwcursor &= ~0x2;
else if (!strncmp(opt, "nohwc", strlen("nohwc")))
} else if (!strncmp(opt, "nohwc", strlen("nohwc"))) {
g_hwcursor = 0;
else {
} else {
if (!g_fbmode[0]) {
g_fbmode[0] = opt;
dev_info(&sm750_dev->pdev->dev,
@ -1168,13 +1168,13 @@ static int __init lynxfb_setup(char *options)
*/
while ((opt = strsep(&options, ":")) != NULL) {
/* options that mean for any lynx chips are configured here */
if (!strncmp(opt, "noaccel", strlen("noaccel")))
if (!strncmp(opt, "noaccel", strlen("noaccel"))) {
g_noaccel = 1;
else if (!strncmp(opt, "nomtrr", strlen("nomtrr")))
} else if (!strncmp(opt, "nomtrr", strlen("nomtrr"))) {
g_nomtrr = 1;
else if (!strncmp(opt, "dual", strlen("dual")))
} else if (!strncmp(opt, "dual", strlen("dual"))) {
g_dualview = 1;
else {
} else {
strcat(tmp, opt);
tmp += strlen(opt);
if (options)