Skip to content

Commit

Permalink
drm/exynos: mic: make all functions static
Browse files Browse the repository at this point in the history
There is no point exposing all internal functions to global kernel name
space, so make all internals functions static.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
  • Loading branch information
Marek Szyprowski authored and Inki Dae committed Feb 15, 2016
1 parent 622688f commit 8b0be57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/gpu/drm/exynos/exynos_drm_mic.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,9 @@ static int parse_dt(struct exynos_mic *mic)
return ret;
}

void mic_disable(struct drm_bridge *bridge) { }
static void mic_disable(struct drm_bridge *bridge) { }

void mic_post_disable(struct drm_bridge *bridge)
static void mic_post_disable(struct drm_bridge *bridge)
{
struct exynos_mic *mic = bridge->driver_private;
int i;
Expand All @@ -329,7 +329,7 @@ void mic_post_disable(struct drm_bridge *bridge)
mutex_unlock(&mic_mutex);
}

void mic_pre_enable(struct drm_bridge *bridge)
static void mic_pre_enable(struct drm_bridge *bridge)
{
struct exynos_mic *mic = bridge->driver_private;
int ret, i;
Expand Down Expand Up @@ -372,7 +372,7 @@ void mic_pre_enable(struct drm_bridge *bridge)
mutex_unlock(&mic_mutex);
}

void mic_enable(struct drm_bridge *bridge) { }
static void mic_enable(struct drm_bridge *bridge) { }

static const struct drm_bridge_funcs mic_bridge_funcs = {
.disable = mic_disable,
Expand Down Expand Up @@ -421,7 +421,7 @@ static const struct component_ops exynos_mic_component_ops = {
.unbind = exynos_mic_unbind,
};

int exynos_mic_probe(struct platform_device *pdev)
static int exynos_mic_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct exynos_mic *mic;
Expand Down

0 comments on commit 8b0be57

Please sign in to comment.