diff options
| -rw-r--r-- | drivers/mmc/mmc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index fa673cf2c..89b674bb4 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -236,7 +236,7 @@ int mmc_send_status(struct mmc *mmc, int timeout)  	status = (cmd.response[0] & MMC_STATUS_CURR_STATE) >> 9;  	printf("CURR STATE:%d\n", status);  #endif -	if (!timeout) { +	if (timeout <= 0) {  		printf("Timeout waiting card ready\n");  		return TIMEOUT;  	} |