Skip to content

Commit

Permalink
video: nuc900fb: fix compile error
Browse files Browse the repository at this point in the history
This patch fixes below compile error:

  CC      drivers/video/nuc900fb.o
drivers/video/nuc900fb.c: In function 'nuc900fb_suspend':
drivers/video/nuc900fb.c:726: error: too few arguments to function 'nuc900fb_stop_lcd'
drivers/video/nuc900fb.c: In function 'nuc900fb_resume':
drivers/video/nuc900fb.c:743: error: 'bfinfo' undeclared (first use in this function)
drivers/video/nuc900fb.c:743: error: (Each undeclared identifier is reported only once
drivers/video/nuc900fb.c:743: error: for each function it appears in.)
make[2]: *** [drivers/video/nuc900fb.o] Error 1
make[1]: *** [drivers/video] Error 2
make: *** [drivers] Error 2

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Axel Lin authored and Paul Mundt committed Jan 18, 2011
1 parent e6f597a commit d10df50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/nuc900fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ static int nuc900fb_suspend(struct platform_device *dev, pm_message_t state)
struct fb_info *fbinfo = platform_get_drvdata(dev);
struct nuc900fb_info *info = fbinfo->par;

nuc900fb_stop_lcd();
nuc900fb_stop_lcd(fbinfo);
msleep(1);
clk_disable(info->clk);
return 0;
Expand All @@ -740,7 +740,7 @@ static int nuc900fb_resume(struct platform_device *dev)
msleep(1);

nuc900fb_init_registers(fbinfo);
nuc900fb_activate_var(bfinfo);
nuc900fb_activate_var(fbinfo);

return 0;
}
Expand Down

0 comments on commit d10df50

Please sign in to comment.