Skip to content

Commit

Permalink
s3c2410fb: fix incorrect argument type in resume function
Browse files Browse the repository at this point in the history
Fix wrong pointer type passed into the s3c2410fb_init_registers()
function.

Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Krzysztof Helt authored and Linus Torvalds committed Jan 14, 2008
1 parent 68842c9 commit f046644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/s3c2410fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ static int s3c2410fb_resume(struct platform_device *dev)
clk_enable(info->clk);
msleep(1);

s3c2410fb_init_registers(info);
s3c2410fb_init_registers(fbinfo);

return 0;
}
Expand Down

0 comments on commit f046644

Please sign in to comment.