Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f0466441 authored by Krzysztof Helt's avatar Krzysztof Helt Committed by Linus Torvalds
Browse files

s3c2410fb: fix incorrect argument type in resume function



Fix wrong pointer type passed into the s3c2410fb_init_registers()
function.

Signed-off-by: default avatarKrzysztof Helt <krzysztof.h1@wp.pl>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 68842c9b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}