From: Sachin Kamat Date: Mon, 18 Feb 2013 08:53:08 +0000 (+0530) Subject: mmc: dw_mmc: Make dw_mci_exynos_probe static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9665f7f234d095fc7c28c70df819a3f7b6a7b4e8;p=linux-beck.git 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 Acked-by: Jaehoon Chung Acked-by: Seungwon Jeon Signed-off-by: Chris Ball --- 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[] = { }; MODULE_DEVICE_TABLE(of, dw_mci_exynos_match); -int dw_mci_exynos_probe(struct platform_device *pdev) +static int dw_mci_exynos_probe(struct platform_device *pdev) { const struct dw_mci_drv_data *drv_data; const struct of_device_id *match;