All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pantelis Antoniou <panto@antoniou-consulting.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/3] mmc: dw_mmc: fixed the wrong bit control
Date: Mon, 23 Feb 2015 19:38:40 +0200	[thread overview]
Message-ID: <51E0A163-4AE8-4753-80FF-6E3995879544@antoniou-consulting.com> (raw)
In-Reply-To: <1423032520-18165-2-git-send-email-jh80.chung@samsung.com>

Hi Jaehoon,

> On Feb 4, 2015, at 08:48 , Jaehoon Chung <jh80.chung@samsung.com> wrote:
> 
> If mode is not DDR-mode, then it needs to clear it.
> 
> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
> ---
> drivers/mmc/dw_mmc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
> index b18c75d..76fa0b0 100644
> --- a/drivers/mmc/dw_mmc.c
> +++ b/drivers/mmc/dw_mmc.c
> @@ -321,7 +321,7 @@ static void dwmci_set_ios(struct mmc *mmc)
> 	if (mmc->ddr_mode)
> 		regs |= DWMCI_DDR_MODE;
> 	else
> -		regs &= DWMCI_DDR_MODE;
> +		regs &= ~DWMCI_DDR_MODE;
> 
> 	dwmci_writel(host, DWMCI_UHS_REG, regs);
> 
> -- 
> 1.9.1
> 

This is the same patch as to the previous version that I applied.
So dropping this.

? Pantelis

  reply	other threads:[~2015-02-23 17:38 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-04  6:48 [U-Boot] [PATCH 0/3] mmc: dw_mmc: fixed minor problems Jaehoon Chung
2015-02-04  6:48 ` [U-Boot] [PATCH 1/3] mmc: dw_mmc: fixed the wrong bit control Jaehoon Chung
2015-02-23 17:38   ` Pantelis Antoniou [this message]
2015-02-04  6:48 ` [U-Boot] [PATCH 2/3] mmc: exynos_dw_mmc: set to clksel_val into board-init function Jaehoon Chung
2015-02-23 17:40   ` Pantelis Antoniou
2015-02-23 17:40   ` Pantelis Antoniou
2015-02-04  6:48 ` [U-Boot] [PATCH 3/3] mmc: exynos_dw_mmc: use the exynos specific data structure Jaehoon Chung

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=51E0A163-4AE8-4753-80FF-6E3995879544@antoniou-consulting.com \
    --to=panto@antoniou-consulting.com \
    --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.