Commit 15e4d001 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

ps3fb: make ps3fb_wait_for_vsync() and ps3fb_flip_ctl() static

Make ps3fb_wait_for_vsync() and ps3fb_flip_ctl() static, as they're no
(longer) used outside ps3fb.
Signed-off-by: default avatarGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
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 5cb3626d
...@@ -652,7 +652,7 @@ static int ps3fb_get_vblank(struct fb_vblank *vblank) ...@@ -652,7 +652,7 @@ static int ps3fb_get_vblank(struct fb_vblank *vblank)
return 0; return 0;
} }
int ps3fb_wait_for_vsync(u32 crtc) static int ps3fb_wait_for_vsync(u32 crtc)
{ {
int ret; int ret;
u64 count; u64 count;
...@@ -667,9 +667,7 @@ int ps3fb_wait_for_vsync(u32 crtc) ...@@ -667,9 +667,7 @@ int ps3fb_wait_for_vsync(u32 crtc)
return 0; return 0;
} }
EXPORT_SYMBOL_GPL(ps3fb_wait_for_vsync); static void ps3fb_flip_ctl(int on, void *data)
void ps3fb_flip_ctl(int on, void *data)
{ {
struct ps3fb_priv *priv = data; struct ps3fb_priv *priv = data;
if (on) if (on)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment