diff options
author | Zac Storer <zac.3.14159@gmail.com> | 2011-11-17 21:34:56 -0700 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-11-22 01:00:16 +0000 |
commit | 5345010cc8e87af7f1f48e5c816b10f96f474da1 (patch) | |
tree | 8136489d1820a689f23fd9f32d2263253c565817 /drivers/video/controlfb.c | |
parent | 97cab45583f75428773547f3bbe59fece05420d3 (diff) | |
download | linux-3.10-5345010cc8e87af7f1f48e5c816b10f96f474da1.tar.gz linux-3.10-5345010cc8e87af7f1f48e5c816b10f96f474da1.tar.bz2 linux-3.10-5345010cc8e87af7f1f48e5c816b10f96f474da1.zip |
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>
Diffstat (limited to 'drivers/video/controlfb.c')
-rw-r--r-- | drivers/video/controlfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/controlfb.c b/drivers/video/controlfb.c index 7b2c40abae1..0c189b32a4c 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) /* Try to pick a video mode out of NVRAM if we have one. */ #ifdef CONFIG_NVRAM - if (default_cmode == CMODE_NVRAM){ + if (default_cmode == CMODE_NVRAM) { cmode = nvram_read_byte(NV_CMODE); if(cmode < CMODE_8 || cmode > CMODE_32) cmode = CMODE_8; |