summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/core
diff options
context:
space:
mode:
authorUlf Hansson <ulf.hansson@linaro.org>2014-10-17 11:54:22 +0200
committerUlf Hansson <ulf.hansson@linaro.org>2014-11-10 12:40:44 +0100
commit2fc91e8b0e1cd89094677d1c9dfba1b26979e48b (patch)
tree57db0baa2a4454abbe2e67d477002b3f23f44e0a /drivers/mmc/core
parentb2cada73a8ff2ee9129557c724f7e53bf55e48f8 (diff)
downloadop-kernel-dev-2fc91e8b0e1cd89094677d1c9dfba1b26979e48b.zip
op-kernel-dev-2fc91e8b0e1cd89094677d1c9dfba1b26979e48b.tar.gz
mmc: core: Remove the redundant mmc_send_ext_csd() API
Previous patches has replaced the calls to mmc_send_ext_csd() into mmc_get_ext_csd(), thus mmc_send_ext_csd() has become redundant. Let's remove it. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/core')
-rw-r--r--drivers/mmc/core/mmc_ops.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/mmc/core/mmc_ops.c b/drivers/mmc/core/mmc_ops.c
index 72e1f9b..9a6181b 100644
--- a/drivers/mmc/core/mmc_ops.c
+++ b/drivers/mmc/core/mmc_ops.c
@@ -378,13 +378,6 @@ err:
return ret;
}
-int mmc_send_ext_csd(struct mmc_card *card, u8 *ext_csd)
-{
- return mmc_send_cxd_data(card, card->host, MMC_SEND_EXT_CSD,
- ext_csd, 512);
-}
-EXPORT_SYMBOL_GPL(mmc_send_ext_csd);
-
int mmc_get_ext_csd(struct mmc_card *card, u8 **new_ext_csd)
{
int err;
@@ -404,7 +397,8 @@ int mmc_get_ext_csd(struct mmc_card *card, u8 **new_ext_csd)
if (!ext_csd)
return -ENOMEM;
- err = mmc_send_ext_csd(card, ext_csd);
+ err = mmc_send_cxd_data(card, card->host, MMC_SEND_EXT_CSD, ext_csd,
+ 512);
if (err)
kfree(ext_csd);
else
OpenPOWER on IntegriCloud