Commit 2a1e91a1 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] sh_vou: declare static functions as such

drivers/media/platform/sh_vou.c:799:5: warning: no previous prototype for 'sh_vou_g_output' [-Wmissing-prototypes]
 int sh_vou_g_output(struct file *file, void *fh, unsigned int *i)
     ^
drivers/media/platform/sh_vou.c:805:5: warning: no previous prototype for 'sh_vou_s_output' [-Wmissing-prototypes]
 int sh_vou_s_output(struct file *file, void *fh, unsigned int i)
     ^
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent bf9c8227
...@@ -796,13 +796,13 @@ static int sh_vou_enum_output(struct file *file, void *fh, ...@@ -796,13 +796,13 @@ static int sh_vou_enum_output(struct file *file, void *fh,
return 0; return 0;
} }
int sh_vou_g_output(struct file *file, void *fh, unsigned int *i) static int sh_vou_g_output(struct file *file, void *fh, unsigned int *i)
{ {
*i = 0; *i = 0;
return 0; return 0;
} }
int sh_vou_s_output(struct file *file, void *fh, unsigned int i) static int sh_vou_s_output(struct file *file, void *fh, unsigned int i)
{ {
return i ? -EINVAL : 0; return i ? -EINVAL : 0;
} }
......
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