diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-02 02:14:11 -0400 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2012-08-23 09:10:37 -0400 |
commit | 4c4ceee0de69616f98240cbe3f5a4ed6d1973c63 (patch) | |
tree | 07bdde9005acfd3bceadd09248e682be95ed51cd /drivers/video/exynos | |
parent | d913f36e02cf22349f6f517e7985411c4ed7d1d9 (diff) |
video: exynos-mipi-dsi: Add missing static storage class specifiers
Fixes the following sparse warnings:
drivers/video/exynos/exynos_mipi_dsi.c:208:22: warning:
symbol 'exynos_mipi_dsi_find_lcd_device' was not declared. Should it be static?
drivers/video/exynos/exynos_mipi_dsi.c:268:22: warning:
symbol 'exynos_mipi_dsi_bind_lcd_ddi' was not declared. Should it be static?
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Donghwa Lee <dh09.lee@samsung.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/exynos')
-rw-r--r-- | drivers/video/exynos/exynos_mipi_dsi.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/video/exynos/exynos_mipi_dsi.c b/drivers/video/exynos/exynos_mipi_dsi.c index 4bc2b8a5dd8b..ef68228cfd70 100644 --- a/drivers/video/exynos/exynos_mipi_dsi.c +++ b/drivers/video/exynos/exynos_mipi_dsi.c | |||
@@ -205,7 +205,8 @@ int exynos_mipi_dsi_register_lcd_device(struct mipi_dsim_lcd_device *lcd_dev) | |||
205 | return 0; | 205 | return 0; |
206 | } | 206 | } |
207 | 207 | ||
208 | struct mipi_dsim_ddi *exynos_mipi_dsi_find_lcd_device(struct mipi_dsim_lcd_driver *lcd_drv) | 208 | static struct mipi_dsim_ddi *exynos_mipi_dsi_find_lcd_device( |
209 | struct mipi_dsim_lcd_driver *lcd_drv) | ||
209 | { | 210 | { |
210 | struct mipi_dsim_ddi *dsim_ddi, *next; | 211 | struct mipi_dsim_ddi *dsim_ddi, *next; |
211 | struct mipi_dsim_lcd_device *lcd_dev; | 212 | struct mipi_dsim_lcd_device *lcd_dev; |
@@ -265,7 +266,8 @@ int exynos_mipi_dsi_register_lcd_driver(struct mipi_dsim_lcd_driver *lcd_drv) | |||
265 | 266 | ||
266 | } | 267 | } |
267 | 268 | ||
268 | struct mipi_dsim_ddi *exynos_mipi_dsi_bind_lcd_ddi(struct mipi_dsim_device *dsim, | 269 | static struct mipi_dsim_ddi *exynos_mipi_dsi_bind_lcd_ddi( |
270 | struct mipi_dsim_device *dsim, | ||
269 | const char *name) | 271 | const char *name) |
270 | { | 272 | { |
271 | struct mipi_dsim_ddi *dsim_ddi, *next; | 273 | struct mipi_dsim_ddi *dsim_ddi, *next; |