aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Storer <zac.3.14159@gmail.com>2011-11-17 23:34:56 -0500
committerFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>2011-11-21 20:00:16 -0500
commit5345010cc8e87af7f1f48e5c816b10f96f474da1 (patch)
tree8136489d1820a689f23fd9f32d2263253c565817
parent97cab45583f75428773547f3bbe59fece05420d3 (diff)
Drivers: video: controlfb: fixed a brace coding style issue
Fixed a brace coding style issue. Signed-off-by: Zac Storer <zac.3.14159@gmail.com> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
-rw-r--r--drivers/video/controlfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/controlfb.c b/drivers/video/controlfb.c
index 7b2c40abae15..0c189b32a4c5 100644
--- a/drivers/video/controlfb.c
+++ b/drivers/video/controlfb.c
@@ -420,7 +420,7 @@ static int __init init_control(struct fb_info_control *p)
420 420
421 /* Try to pick a video mode out of NVRAM if we have one. */ 421 /* Try to pick a video mode out of NVRAM if we have one. */
422#ifdef CONFIG_NVRAM 422#ifdef CONFIG_NVRAM
423 if (default_cmode == CMODE_NVRAM){ 423 if (default_cmode == CMODE_NVRAM) {
424 cmode = nvram_read_byte(NV_CMODE); 424 cmode = nvram_read_byte(NV_CMODE);
425 if(cmode < CMODE_8 || cmode > CMODE_32) 425 if(cmode < CMODE_8 || cmode > CMODE_32)
426 cmode = CMODE_8; 426 cmode = CMODE_8;