From: Sachin Kamat Date: Thu, 12 Sep 2013 06:46:36 +0000 (+0530) Subject: mmc: dw_mmc-socfpga: Staticize dw_mci_socfpga_probe X-Git-Tag: firefly_0821_release~176^2~4937^2~77 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=08de89b7915afaba00164f2a972290b86aa27e6d;p=firefly-linux-kernel-4.4.55.git mmc: dw_mmc-socfpga: Staticize dw_mci_socfpga_probe 'dw_mci_socfpga_probe' is used only in this file. Make it static. Signed-off-by: Sachin Kamat Acked-by: Jaehoon Chung Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/host/dw_mmc-socfpga.c b/drivers/mmc/host/dw_mmc-socfpga.c index 8e8e2050f3e7..3e8e53ae3302 100644 --- a/drivers/mmc/host/dw_mmc-socfpga.c +++ b/drivers/mmc/host/dw_mmc-socfpga.c @@ -111,7 +111,7 @@ static const struct of_device_id dw_mci_socfpga_match[] = { }; MODULE_DEVICE_TABLE(of, dw_mci_socfpga_match); -int dw_mci_socfpga_probe(struct platform_device *pdev) +static int dw_mci_socfpga_probe(struct platform_device *pdev) { const struct dw_mci_drv_data *drv_data; const struct of_device_id *match;