diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2015-02-06 07:12:54 -0500 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2015-06-01 03:07:12 -0400 |
commit | f168359efbb99d6f8591bb666d6510bb78df2d07 (patch) | |
tree | 95ca3f2c62eccc4e6115103db86150c6f024ff7d /drivers/mmc | |
parent | fa021cef1af64cb4ba11c3c0910ef45085c58016 (diff) |
mmc: core: Add 'card' to drive strength selection callback
In preparation for supporting also eMMC drive strength,
add the 'card' as a parameter so that the callback can
distinguish different types of cards if necessary.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/sd.c | 2 | ||||
-rw-r--r-- | drivers/mmc/core/sdio.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c index 9b72ea6b3177..63f9163b8dda 100644 --- a/drivers/mmc/core/sd.c +++ b/drivers/mmc/core/sd.c | |||
@@ -411,7 +411,7 @@ static int sd_select_driver_type(struct mmc_card *card, u8 *status) | |||
411 | * return what is possible given the options | 411 | * return what is possible given the options |
412 | */ | 412 | */ |
413 | mmc_host_clk_hold(card->host); | 413 | mmc_host_clk_hold(card->host); |
414 | drive_strength = card->host->ops->select_drive_strength( | 414 | drive_strength = card->host->ops->select_drive_strength(card, |
415 | card->sw_caps.uhs_max_dtr, | 415 | card->sw_caps.uhs_max_dtr, |
416 | host_drv_type, card_drv_type, &drv_type); | 416 | host_drv_type, card_drv_type, &drv_type); |
417 | mmc_host_clk_release(card->host); | 417 | mmc_host_clk_release(card->host); |
diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index ef82f3d029e8..d3d13047f316 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c | |||
@@ -427,7 +427,7 @@ static void sdio_select_driver_type(struct mmc_card *card) | |||
427 | * information and let the hardware specific code | 427 | * information and let the hardware specific code |
428 | * return what is possible given the options | 428 | * return what is possible given the options |
429 | */ | 429 | */ |
430 | drive_strength = card->host->ops->select_drive_strength( | 430 | drive_strength = card->host->ops->select_drive_strength(card, |
431 | card->sw_caps.uhs_max_dtr, | 431 | card->sw_caps.uhs_max_dtr, |
432 | host_drv_type, card_drv_type, &drv_type); | 432 | host_drv_type, card_drv_type, &drv_type); |
433 | 433 | ||