* [PATCH] mmc: dw-mmc: fix the error for a few argument
@ 2012-12-04 4:12 Jaehoon Chung
2012-12-04 7:26 ` Chris Ball
0 siblings, 1 reply; 2+ messages in thread
From: Jaehoon Chung @ 2012-12-04 4:12 UTC (permalink / raw)
To: linux-mmc; +Cc: Chris Ball, Kyungmin Park, Will Newton, James Hogan
The argument of dw_mci_setup_bus is modified.
(Abhilash's patch: mmc: dw-mc: Add sdio power binding)
This patch used the dw_mci_setup_bus(slot, false) instead of
dw_mci_setup_bus(slot)
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
---
drivers/mmc/host/dw_mmc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index 069ca70..323c502 100644
--- a/drivers/mmc/host/dw_mmc.c
+++ b/drivers/mmc/host/dw_mmc.c
@@ -807,7 +807,7 @@ static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
drv_data->set_ios(slot->host, ios);
/* Slot specific timing and width adjustment */
- dw_mci_setup_bus(slot);
+ dw_mci_setup_bus(slot, false);
switch (ios->power_mode) {
case MMC_POWER_UP:
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mmc: dw-mmc: fix the error for a few argument
2012-12-04 4:12 [PATCH] mmc: dw-mmc: fix the error for a few argument Jaehoon Chung
@ 2012-12-04 7:26 ` Chris Ball
0 siblings, 0 replies; 2+ messages in thread
From: Chris Ball @ 2012-12-04 7:26 UTC (permalink / raw)
To: Jaehoon Chung; +Cc: linux-mmc, Kyungmin Park, Will Newton, James Hogan
Hi,
On Mon, Dec 03 2012, Jaehoon Chung wrote:
> The argument of dw_mci_setup_bus is modified.
> (Abhilash's patch: mmc: dw-mc: Add sdio power binding)
> This patch used the dw_mci_setup_bus(slot, false) instead of
> dw_mci_setup_bus(slot)
>
> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
> ---
> drivers/mmc/host/dw_mmc.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
> index 069ca70..323c502 100644
> --- a/drivers/mmc/host/dw_mmc.c
> +++ b/drivers/mmc/host/dw_mmc.c
> @@ -807,7 +807,7 @@ static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
> drv_data->set_ios(slot->host, ios);
>
> /* Slot specific timing and width adjustment */
> - dw_mci_setup_bus(slot);
> + dw_mci_setup_bus(slot, false);
>
> switch (ios->power_mode) {
> case MMC_POWER_UP:
Thanks for noticing -- I've rolled this change into your patch in
mmc-next now.
- Chris.
--
Chris Ball <cjb@laptop.org> <http://printf.net/>
One Laptop Per Child
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-04 7:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-04 4:12 [PATCH] mmc: dw-mmc: fix the error for a few argument Jaehoon Chung
2012-12-04 7:26 ` Chris Ball
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.