diff options
author | Samuel Zou <zou_wei@huawei.com> | 2020-05-11 19:20:15 +0800 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2020-05-12 23:09:33 +0200 |
commit | 8e3d01808ca2ff7293382eaa2e89a02d8d2ed685 (patch) | |
tree | cdfc699bd103c29468517393ed05dc435808f0e1 /drivers/staging/media/tegra-video | |
parent | 6a5c2972e7411c4f68e49a278fe3e0cd4eb5e8c5 (diff) |
media: tegra-video: Make tegra210_video_formats static
Fix the following sparse warning:
drivers/staging/media/tegra-video/tegra210.c:589:33: warning: symbol 'tegra210_video_formats' was not declared.
The tegra210_video_formats has only call site within tegra210.c
It should be static
Fixes: 423d10a99b30 ("media: tegra: Add Tegra210 Video input driver")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Samuel Zou <zou_wei@huawei.com>
Acked-by: Sowjanya Komatineni <skomatineni@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/staging/media/tegra-video')
-rw-r--r-- | drivers/staging/media/tegra-video/tegra210.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/tegra-video/tegra210.c b/drivers/staging/media/tegra-video/tegra210.c index 2045609582b7..3baa4e314203 100644 --- a/drivers/staging/media/tegra-video/tegra210.c +++ b/drivers/staging/media/tegra-video/tegra210.c @@ -586,7 +586,7 @@ enum tegra210_image_format { } /* Tegra210 supported video formats */ -const struct tegra_video_format tegra210_video_formats[] = { +static const struct tegra_video_format tegra210_video_formats[] = { /* RAW 8 */ TEGRA210_VIDEO_FMT(RAW8, 8, SRGGB8_1X8, 1, T_L8, SRGGB8), TEGRA210_VIDEO_FMT(RAW8, 8, SGRBG8_1X8, 1, T_L8, SGRBG8), |