[U-Boot] [PATCH 1/2] mmc: mmc_getcd/getwp: use sensible defaults

Tom Rini trini at ti.com
Tue Mar 26 15:51:15 CET 2013


On Thu, Mar 21, 2013 at 03:00:03PM +0100, Peter Korsgaard wrote:

> Let mmc_getcd() return true and mmc_getwp() false if mmc driver doesn't
> provide handlers for them.
> 
> Signed-off-by: Peter Korsgaard <peter.korsgaard at barco.com>
> ---
>  drivers/mmc/mmc.c |   14 ++++++++++----
>  1 file changed, 10 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
> index 7b5fdd9..54d23eb 100644
> --- a/drivers/mmc/mmc.c
> +++ b/drivers/mmc/mmc.c
> @@ -51,8 +51,11 @@ int mmc_getwp(struct mmc *mmc)
>  
>  	wp = board_mmc_getwp(mmc);
>  
> -	if ((wp < 0) && mmc->getwp)
> -		wp = mmc->getwp(mmc);
> +	if (wp < 0)
> +		if (mmc->getwp)
> +			wp = mmc->getwp(mmc);
> +		else
> +			wp = 0;
>  
>  	return wp;
>  }
> @@ -692,8 +695,11 @@ int mmc_getcd(struct mmc *mmc)
>  
>  	cd = board_mmc_getcd(mmc);
>  
> -	if ((cd < 0) && mmc->getcd)
> -		cd = mmc->getcd(mmc);
> +	if (cd < 0)
> +		if (mmc->getcd)
> +			cd = mmc->getcd(mmc);
> +		else
> +			cd = 1;
>  
>  	return cd;
>  }

With the following to fix a build warning:

diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index 54d23eb..d732581 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -51,11 +51,12 @@ int mmc_getwp(struct mmc *mmc)
 
 	wp = board_mmc_getwp(mmc);
 
-	if (wp < 0)
+	if (wp < 0) {
 		if (mmc->getwp)
 			wp = mmc->getwp(mmc);
 		else
 			wp = 0;
+	}
 
 	return wp;
 }
@@ -695,11 +696,12 @@ int mmc_getcd(struct mmc *mmc)
 
 	cd = board_mmc_getcd(mmc);
 
-	if (cd < 0)
+	if (cd < 0) {
 		if (mmc->getcd)
 			cd = mmc->getcd(mmc);
 		else
 			cd = 1;
+	}
 
 	return cd;
 }

Applied to u-boot-ti/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130326/2dcc1dd4/attachment.pgp>


More information about the U-Boot mailing list