diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-02-18 03:53:08 -0500 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-03-12 07:48:36 -0400 |
commit | 9665f7f234d095fc7c28c70df819a3f7b6a7b4e8 (patch) | |
tree | b3fa8f37b3b94acb241bc54fc7704c124273613e /drivers/mmc/host | |
parent | 5ebf2552493228ec875ea45f6ba8a816cca3744a (diff) |
mmc: dw_mmc: Make dw_mci_exynos_probe static
Silences the following sparse warning:
drivers/mmc/host/dw_mmc-exynos.c:218:5: warning:
symbol 'dw_mci_exynos_probe' was not declared. Should it be static?
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host')
-rw-r--r-- | drivers/mmc/host/dw_mmc-exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c index 72fd0f2c9013..5a09c779a937 100644 --- a/drivers/mmc/host/dw_mmc-exynos.c +++ b/drivers/mmc/host/dw_mmc-exynos.c | |||
@@ -215,7 +215,7 @@ static const struct of_device_id dw_mci_exynos_match[] = { | |||
215 | }; | 215 | }; |
216 | MODULE_DEVICE_TABLE(of, dw_mci_exynos_match); | 216 | MODULE_DEVICE_TABLE(of, dw_mci_exynos_match); |
217 | 217 | ||
218 | int dw_mci_exynos_probe(struct platform_device *pdev) | 218 | static int dw_mci_exynos_probe(struct platform_device *pdev) |
219 | { | 219 | { |
220 | const struct dw_mci_drv_data *drv_data; | 220 | const struct dw_mci_drv_data *drv_data; |
221 | const struct of_device_id *match; | 221 | const struct of_device_id *match; |