From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 1/3] mx6qsabresd: Fix card detection for invalid card id case
Date: Wed, 13 Mar 2013 09:10:17 +0100 [thread overview]
Message-ID: <51403469.3010709@denx.de> (raw)
In-Reply-To: <1362584767-14105-2-git-send-email-otavio@ossystems.com.br>
On 06/03/2013 16:46, Otavio Salvador wrote:
> This changes the code so in case an unkown value is passed it will
> return as invalid.
>
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
Hi Otavio,
> Changes in v3: None
> Changes in v2:
> - Rework code to use a 'ret' variable (Fabio)
>
> board/freescale/mx6qsabresd/mx6qsabresd.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/board/freescale/mx6qsabresd/mx6qsabresd.c b/board/freescale/mx6qsabresd/mx6qsabresd.c
> index 65c4a1a..e556476 100644
> --- a/board/freescale/mx6qsabresd/mx6qsabresd.c
> +++ b/board/freescale/mx6qsabresd/mx6qsabresd.c
> @@ -145,15 +145,18 @@ struct fsl_esdhc_cfg usdhc_cfg[3] = {
> int board_mmc_getcd(struct mmc *mmc)
> {
> struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv;
> + int ret = 0;
>
> switch (cfg->esdhc_base) {
> case USDHC2_BASE_ADDR:
> - return !gpio_get_value(USDHC2_CD_GPIO);
> + ret = !gpio_get_value(USDHC2_CD_GPIO);
I do not understand. Is there no "break" statement here ? ret will be
overwritten then.
> case USDHC3_BASE_ADDR:
> - return !gpio_get_value(USDHC3_CD_GPIO);
> - default:
> - return 1; /* eMMC/uSDHC4 is always present */
> + ret = !gpio_get_value(USDHC3_CD_GPIO);
> + case USDHC4_BASE_ADDR:
> + ret = 1; /* eMMC/uSDHC4 is always present */
> }
> +
> + return ret;
> }
>
> int board_mmc_init(bd_t *bis)
>
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
next prev parent reply other threads:[~2013-03-13 8:10 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-06 15:46 [U-Boot] [PATCH v3 0/3] i.MX6 SabreSD and SabreAUTO bmode support Otavio Salvador
2013-03-06 15:46 ` [U-Boot] [PATCH v3 1/3] mx6qsabresd: Fix card detection for invalid card id case Otavio Salvador
2013-03-13 8:10 ` Stefano Babic [this message]
2013-03-13 15:10 ` Otavio Salvador
2013-03-06 15:46 ` [U-Boot] [PATCH v3 2/3] mx6qsabresd: Document the mapping of USDHC[2-4] Otavio Salvador
2013-03-06 15:46 ` [U-Boot] [PATCH v3 3/3] mx6qsabre{sd,auto}: Add boot mode select Otavio Salvador
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51403469.3010709@denx.de \
--to=sbabic@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.