]> git.sur5r.net Git - u-boot/commitdiff
mmc: Changed the datatype of the variable to handle 64-bit arch
authorVipul Kumar <vipul.kumar@xilinx.com>
Thu, 3 May 2018 06:50:54 +0000 (12:20 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Fri, 11 May 2018 07:38:27 +0000 (09:38 +0200)
This patch changed the datatype of variable "start" from uint to ulong
to work properly on 64-bit machines as well. Also the return type of
get_timer() function is ulong.

Signed-off-by: Vipul Kumar <vipul.kumar@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
drivers/mmc/mmc.c
drivers/mmc/sdhci.c

index a08c69476ca8395ac301ac4731309974ad3e8aaf..3cfe6bff49083e8e01448cd1ffb78aa09eadc4f1 100644 (file)
@@ -679,7 +679,7 @@ static int mmc_complete_op_cond(struct mmc *mmc)
 {
        struct mmc_cmd cmd;
        int timeout = 1000;
-       uint start;
+       ulong start;
        int err;
 
        mmc->op_cond_pending = 0;
@@ -2611,7 +2611,7 @@ static int mmc_complete_init(struct mmc *mmc)
 int mmc_init(struct mmc *mmc)
 {
        int err = 0;
-       __maybe_unused unsigned start;
+       __maybe_unused ulong start;
 #if CONFIG_IS_ENABLED(DM_MMC)
        struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev);
 
index 758850fc3b4edd85c401bb65d6a1f2121e33c5e5..c2ae3e327bf0ebf3d607f13e4cdabdb30544bd8c 100644 (file)
@@ -151,7 +151,7 @@ static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
        u32 mask, flags, mode;
        unsigned int time = 0, start_addr = 0;
        int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
-       unsigned start = get_timer(0);
+       ulong start = get_timer(0);
 
        /* Timeout unit - ms */
        static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;