mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
mmc: Changed the datatype of the variable to handle 64-bit arch
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>
This commit is contained in:
parent
1d6c54ecb3
commit
36332b6e4b
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue