diff options
author | Heiko Stübner <heiko@sntech.de> | 2013-06-13 10:56:23 +0200 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-07-05 12:46:26 -0400 |
commit | 04520817d90f1dce863ab7f06531da7579798696 (patch) | |
tree | f4dae33ddc7912b244cd3ffabddaeb404cbefd66 | |
parent | b04fa064e72c301e075c2d52c146282f8f464083 (diff) | |
download | op-kernel-dev-04520817d90f1dce863ab7f06531da7579798696.zip op-kernel-dev-04520817d90f1dce863ab7f06531da7579798696.tar.gz |
mmc: dw_mmc-pltfm: remove static from dw_mci_pltfm_remove
dw_mci_pltfm_remove gets exported and used by dw_mmc-exynos, so should
not be static.
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r-- | drivers/mmc/host/dw_mmc-pltfm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/dw_mmc-pltfm.c b/drivers/mmc/host/dw_mmc-pltfm.c index 2721bd5..19edb0c 100644 --- a/drivers/mmc/host/dw_mmc-pltfm.c +++ b/drivers/mmc/host/dw_mmc-pltfm.c @@ -65,7 +65,7 @@ static int dw_mci_pltfm_probe(struct platform_device *pdev) return dw_mci_pltfm_register(pdev, NULL); } -static int dw_mci_pltfm_remove(struct platform_device *pdev) +int dw_mci_pltfm_remove(struct platform_device *pdev) { struct dw_mci *host = platform_get_drvdata(pdev); |