mmc: card: fix quirk bit map
There seems to be bit map usage overlap between few MMC_QUIRKS_*, this change fixes it. Change-Id: I717a2de1261ed2de1a8c730b005b137f0687d969 Signed-off-by: Subhash Jadavani <subhashj@codeaurora.org>
This commit is contained in:
parent
b58dd25cc3
commit
79d2f1626b
1 changed files with 3 additions and 3 deletions
|
@ -386,9 +386,9 @@ struct mmc_card {
|
||||||
#define MMC_QUIRK_INAND_DATA_TIMEOUT (1<<13) /* For incorrect data timeout */
|
#define MMC_QUIRK_INAND_DATA_TIMEOUT (1<<13) /* For incorrect data timeout */
|
||||||
#define MMC_QUIRK_BROKEN_HPI (1 << 14) /* For devices which gets */
|
#define MMC_QUIRK_BROKEN_HPI (1 << 14) /* For devices which gets */
|
||||||
/* broken due to HPI feature */
|
/* broken due to HPI feature */
|
||||||
#define MMC_QUIRK_CACHE_DISABLE (1 << 14) /* prevent cache enable */
|
#define MMC_QUIRK_CACHE_DISABLE (1 << 15) /* prevent cache enable */
|
||||||
#define MMC_QUIRK_QCA6574_SETTINGS (1 << 15) /* QCA6574 card settings*/
|
#define MMC_QUIRK_QCA6574_SETTINGS (1 << 16) /* QCA6574 card settings*/
|
||||||
#define MMC_QUIRK_QCA9377_SETTINGS (1 << 16) /* QCA9377 card settings*/
|
#define MMC_QUIRK_QCA9377_SETTINGS (1 << 17) /* QCA9377 card settings*/
|
||||||
|
|
||||||
|
|
||||||
/* Make sure CMDQ is empty before queuing DCMD */
|
/* Make sure CMDQ is empty before queuing DCMD */
|
||||||
|
|
Loading…
Add table
Reference in a new issue