diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-02-19 06:00:36 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-14 10:36:34 -0400 |
commit | a9fc36afc074db2d5995136b50b018c2ca77f48f (patch) | |
tree | 885fed7e996d61729f791b3126f376ccb79bcc42 | |
parent | d9b7595bed61930987308be946563ce084148c14 (diff) |
[media] timblogiw: Fix sparse warning
Fixes the below warning:
drivers/media/platform/timblogiw.c:81:31: warning:
symbol 'timblogiw_tvnorms' was not declared. Should it be static?
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/platform/timblogiw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/timblogiw.c b/drivers/media/platform/timblogiw.c index c3a2a4484401..2d91eeb1d2ae 100644 --- a/drivers/media/platform/timblogiw.c +++ b/drivers/media/platform/timblogiw.c | |||
@@ -78,7 +78,7 @@ struct timblogiw_buffer { | |||
78 | struct timblogiw_fh *fh; | 78 | struct timblogiw_fh *fh; |
79 | }; | 79 | }; |
80 | 80 | ||
81 | const struct timblogiw_tvnorm timblogiw_tvnorms[] = { | 81 | static const struct timblogiw_tvnorm timblogiw_tvnorms[] = { |
82 | { | 82 | { |
83 | .std = V4L2_STD_PAL, | 83 | .std = V4L2_STD_PAL, |
84 | .width = 720, | 84 | .width = 720, |