summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSubhash Jadavani <subhashj@codeaurora.org>2016-05-12 11:58:15 -0700
committerSubhash Jadavani <subhashj@codeaurora.org>2016-05-31 15:28:17 -0700
commite8032e07d1fbe7f71be0af640981f3a587df1d4d (patch)
tree4c50f39cac3a0eff61629a4009c511fb1c4ffe9f /include
parent79d2f1626ba69198feff3376684f39b9e0838169 (diff)
mmc: auto bkops fixes
Change "man_bkops_en" to "bkops_en" to hold the status of both manual and auto bkops. Change-Id: I60029bae67cebb2c91147ad741b96f4caed9c1d9 Signed-off-by: Subhash Jadavani <subhashj@codeaurora.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmc/card.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h
index 40665cb0ccde..e7578be38ddf 100644
--- a/include/linux/mmc/card.h
+++ b/include/linux/mmc/card.h
@@ -88,7 +88,7 @@ struct mmc_ext_csd {
bool hpi; /* HPI support bit */
unsigned int hpi_cmd; /* cmd used as HPI */
bool bkops; /* background support bit */
- u8 man_bkops_en; /* manual bkops enable */
+ u8 bkops_en; /* bkops enable */
unsigned int data_sector_size; /* 512 bytes or 4KB */
unsigned int data_tag_unit_size; /* DATA TAG UNIT size */
unsigned int boot_ro_lock; /* ro lock support */
@@ -678,12 +678,12 @@ static inline bool mmc_card_support_auto_bkops(const struct mmc_card *c)
static inline bool mmc_card_configured_manual_bkops(const struct mmc_card *c)
{
- return c->ext_csd.man_bkops_en & EXT_CSD_BKOPS_MANUAL_EN;
+ return c->ext_csd.bkops_en & EXT_CSD_BKOPS_MANUAL_EN;
}
static inline bool mmc_card_configured_auto_bkops(const struct mmc_card *c)
{
- return c->ext_csd.man_bkops_en & EXT_CSD_BKOPS_AUTO_EN;
+ return c->ext_csd.bkops_en & EXT_CSD_BKOPS_AUTO_EN;
}
static inline bool mmc_enable_qca6574_settings(const struct mmc_card *c)