aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorScott Jiang <scott.jiang.linux@gmail.com>2014-07-02 14:53:42 +0800
committerTomi Valkeinen <tomi.valkeinen@ti.com>2014-07-01 13:18:38 +0300
commit0b479c3db63303814c1d2f8e97497db6be1caaa4 (patch)
tree5bb4a3bfbac69d9f175a0b048aeebe1da6e81294 /drivers/video
parentvideo: omapdss: Fix potential null pointer dereference (diff)
downloadlinux-dev-0b479c3db63303814c1d2f8e97497db6be1caaa4.tar.xz
linux-dev-0b479c3db63303814c1d2f8e97497db6be1caaa4.zip
fb: adv7393: add missing semicolon
Commit f8bd493456c3da372ae81ed8f6b903f6207b9d98 by Jingoo Han introduced this problem. This makes bfin_adv7393fb.c failed to compile. Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/fbdev/bfin_adv7393fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/bfin_adv7393fb.c b/drivers/video/fbdev/bfin_adv7393fb.c
index a54f7f7d763b..8fe41caac38e 100644
--- a/drivers/video/fbdev/bfin_adv7393fb.c
+++ b/drivers/video/fbdev/bfin_adv7393fb.c
@@ -408,7 +408,7 @@ static int bfin_adv7393_fb_probe(struct i2c_client *client,
/* Workaround "PPI Does Not Start Properly In Specific Mode" */
if (ANOMALY_05000400) {
ret = gpio_request_one(P_IDENT(P_PPI0_FS3), GPIOF_OUT_INIT_LOW,
- "PPI0_FS3")
+ "PPI0_FS3");
if (ret) {
dev_err(&client->dev, "PPI0_FS3 GPIO request failed\n");
ret = -EBUSY;