diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-05-22 07:02:54 +0200 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2014-06-01 19:07:10 +0200 |
commit | f46ed1abef25efa3b7f7a421249b81945df1e921 (patch) | |
tree | 74117a5e325994eb261e84a188ab417250724c99 | |
parent | drm/exynos: Fix PTN3460 dependency (diff) | |
download | linux-f46ed1abef25efa3b7f7a421249b81945df1e921.tar.xz linux-f46ed1abef25efa3b7f7a421249b81945df1e921.zip |
drm/exynos: Staticize exynos_dpi_of_find_panel_node
exynos_dpi_of_find_panel_node is local to this file.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Inki Dae <inki.dae>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_dpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_dpi.c b/drivers/gpu/drm/exynos/exynos_drm_dpi.c index a9c52fe8a37f..a832364358a7 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_dpi.c +++ b/drivers/gpu/drm/exynos/exynos_drm_dpi.c @@ -235,7 +235,7 @@ enum { FIMD_PORT_WRB, }; -struct device_node *exynos_dpi_of_find_panel_node(struct device *dev) +static struct device_node *exynos_dpi_of_find_panel_node(struct device *dev) { struct device_node *np, *ep; |