diff mbox

mmc: dw-mmc: fix the error for a few argument

Message ID 50BD781B.4050609@samsung.com (mailing list archive)
State New, archived
Headers show

Commit Message

Jaehoon Chung Dec. 4, 2012, 4:12 a.m. UTC
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(-)

Comments

Chris Ball Dec. 4, 2012, 7:26 a.m. UTC | #1
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.
diff mbox

Patch

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: