summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorShridhar Rasal <srasal@nvidia.com>2012-02-09 12:08:30 +0530
committerRohan Somvanshi <rsomvanshi@nvidia.com>2012-02-13 06:40:04 -0800
commita1ec5e7bfe59996409a90298e78eef321a25c960 (patch)
treed0063639ee46e9f8eb9bae490b249d349c904026 /include/linux
parent12b2e1045b6975cf259f477abad1a8b211e73158 (diff)
sdhci: add proper macro values
set quirks macros values properly wrt change in number of quirks and its data type. bug 919232 Change-Id: I9e980ffd4363ddfe5bd950932285513b27f44eaf Signed-off-by: Shridhar Rasal <srasal@nvidia.com> Reviewed-on: http://git-master/r/77802 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mmc/sdhci.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h
index 061f70ec01f9..5ee48390decc 100644
--- a/include/linux/mmc/sdhci.h
+++ b/include/linux/mmc/sdhci.h
@@ -90,9 +90,9 @@ struct sdhci_host {
/* Controller cannot report the line status in present state register */
#define SDHCI_QUIRK_NON_STD_VOLTAGE_SWITCHING (1ULL<<32)
/* Controller doesn't follow the standard frequency tuning procedure */
-#define SDHCI_QUIRK_NON_STANDARD_TUNING (1LL<<33)
+#define SDHCI_QUIRK_NON_STANDARD_TUNING (1ULL<<33)
/* Controller doesn't calculate max_discard_to */
-#define SDHCI_QUIRK_NO_CALC_MAX_DISCARD_TO (1LL<<34)
+#define SDHCI_QUIRK_NO_CALC_MAX_DISCARD_TO (1ULL<<34)
int irq; /* Device IRQ */
void __iomem *ioaddr; /* Mapped address */