diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-05-24 07:53:24 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-05-25 12:23:22 +0900 |
commit | e1f42ff4f06e5feaa57a22556ad977ef62164e14 (patch) | |
tree | 4554a97b28721292af55dff77d44096da1a56aa7 /drivers/video | |
parent | 14baf9d7f275f0bbf42c1216ff1eef1109ca42ba (diff) | |
download | talos-obmc-linux-e1f42ff4f06e5feaa57a22556ad977ef62164e14.tar.gz talos-obmc-linux-e1f42ff4f06e5feaa57a22556ad977ef62164e14.zip |
fbdev: fix erroneous index in drivers/video/sh_mobile_lcdcfb.c
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index e8c769944812..12c451a711e9 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c @@ -991,13 +991,13 @@ static int __devinit sh_mobile_lcdc_probe(struct platform_device *pdev) priv->ch[j].lcdc = priv; memcpy(&priv->ch[j].cfg, &pdata->ch[i], sizeof(pdata->ch[i])); - error = sh_mobile_lcdc_check_interface(&priv->ch[i]); + error = sh_mobile_lcdc_check_interface(&priv->ch[j]); if (error) { dev_err(&pdev->dev, "unsupported interface type\n"); goto err1; } - init_waitqueue_head(&priv->ch[i].frame_end_wait); - init_completion(&priv->ch[i].vsync_completion); + init_waitqueue_head(&priv->ch[j].frame_end_wait); + init_completion(&priv->ch[j].vsync_completion); priv->ch[j].pan_offset = 0; switch (pdata->ch[i].chan) { |