summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/core/sd_ops.h
diff options
context:
space:
mode:
authorUlf Hansson <ulf.hansson@linaro.org>2019-02-13 14:49:15 +0100
committerUlf Hansson <ulf.hansson@linaro.org>2019-02-25 15:20:58 +0100
commit9a4b869b0ca9a9e4d8497ecf20a1e3d6557b5426 (patch)
tree3800af4f2eafdf2a89368fb2c03eace57b6eb52d /drivers/mmc/core/sd_ops.h
parentf0c8234cb9230e3fc128ab4739f65e30bb00ceb5 (diff)
downloadlinux-stable-9a4b869b0ca9a9e4d8497ecf20a1e3d6557b5426.tar.gz
linux-stable-9a4b869b0ca9a9e4d8497ecf20a1e3d6557b5426.tar.bz2
linux-stable-9a4b869b0ca9a9e4d8497ecf20a1e3d6557b5426.zip
mmc: core: Convert mmc_wait_for_app_cmd() to static
mmc_wait_for_app_cmd() is an internal function for sd_ops.c, thus let's drop the unnecessary export and turn it into static function. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/core/sd_ops.h')
-rw-r--r--drivers/mmc/core/sd_ops.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mmc/core/sd_ops.h b/drivers/mmc/core/sd_ops.h
index 0e6c3d51e66d..ffaed5cacc88 100644
--- a/drivers/mmc/core/sd_ops.h
+++ b/drivers/mmc/core/sd_ops.h
@@ -16,7 +16,6 @@
struct mmc_card;
struct mmc_host;
-struct mmc_command;
int mmc_app_set_bus_width(struct mmc_card *card, int width);
int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
@@ -27,8 +26,6 @@ int mmc_sd_switch(struct mmc_card *card, int mode, int group,
u8 value, u8 *resp);
int mmc_app_sd_status(struct mmc_card *card, void *ssr);
int mmc_app_cmd(struct mmc_host *host, struct mmc_card *card);
-int mmc_wait_for_app_cmd(struct mmc_host *host, struct mmc_card *card,
- struct mmc_command *cmd, int retries);
#endif