diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2017-03-13 14:36:37 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2017-04-24 21:42:02 +0200 |
commit | b658af718465cd1e8011c8da281befdfc2debefd (patch) | |
tree | 4c623d3459e8a74c1fd1c23dbf4c0780459ea6b7 /drivers/mmc/core/mmc_ops.h | |
parent | 7b410d074b253a44624497a18e73f666a9574f37 (diff) | |
download | talos-obmc-linux-b658af718465cd1e8011c8da281befdfc2debefd.tar.gz talos-obmc-linux-b658af718465cd1e8011c8da281befdfc2debefd.zip |
mmc: mmc: Add functions to enable / disable the Command Queue
Add helper functions to enable or disable the Command Queue.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/core/mmc_ops.h')
-rw-r--r-- | drivers/mmc/core/mmc_ops.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/core/mmc_ops.h b/drivers/mmc/core/mmc_ops.h index 74beea8a9c7e..978bd2e60f8a 100644 --- a/drivers/mmc/core/mmc_ops.h +++ b/drivers/mmc/core/mmc_ops.h @@ -46,6 +46,8 @@ int mmc_read_bkops_status(struct mmc_card *card); void mmc_start_bkops(struct mmc_card *card, bool from_exception); int mmc_can_reset(struct mmc_card *card); int mmc_flush_cache(struct mmc_card *card); +int mmc_cmdq_enable(struct mmc_card *card); +int mmc_cmdq_disable(struct mmc_card *card); #endif |