|
@@ -299,8 +299,9 @@ void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
|
|
|
unsigned int timeout_us, limit_us;
|
|
|
|
|
|
timeout_us = data->timeout_ns / 1000;
|
|
|
- timeout_us += data->timeout_clks * 1000 /
|
|
|
- (mmc_host_clk_rate(card->host) / 1000);
|
|
|
+ if (mmc_host_clk_rate(card->host))
|
|
|
+ timeout_us += data->timeout_clks * 1000 /
|
|
|
+ (mmc_host_clk_rate(card->host) / 1000);
|
|
|
|
|
|
if (data->flags & MMC_DATA_WRITE)
|
|
|
/*
|