Commit 83a0c779 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Chris Ball

mmc: sh_mmcif: Remove .set_pwr() callback from platform data

The .set_pwr() callback isn't used anymore as all platforms register
GPIO-controlled regulators. Remove it.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent dcbfaf36
...@@ -956,11 +956,8 @@ static int sh_mmcif_clk_update(struct sh_mmcif_host *host) ...@@ -956,11 +956,8 @@ static int sh_mmcif_clk_update(struct sh_mmcif_host *host)
static void sh_mmcif_set_power(struct sh_mmcif_host *host, struct mmc_ios *ios) static void sh_mmcif_set_power(struct sh_mmcif_host *host, struct mmc_ios *ios)
{ {
struct sh_mmcif_plat_data *pd = host->pd->dev.platform_data;
struct mmc_host *mmc = host->mmc; struct mmc_host *mmc = host->mmc;
if (pd && pd->set_pwr)
pd->set_pwr(host->pd, ios->power_mode != MMC_POWER_OFF);
if (!IS_ERR(mmc->supply.vmmc)) if (!IS_ERR(mmc->supply.vmmc))
/* Errors ignored... */ /* Errors ignored... */
mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, mmc_regulator_set_ocr(mmc, mmc->supply.vmmc,
......
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
*/ */
struct sh_mmcif_plat_data { struct sh_mmcif_plat_data {
void (*set_pwr)(struct platform_device *pdev, int state);
int (*get_cd)(struct platform_device *pdef); int (*get_cd)(struct platform_device *pdef);
unsigned int slave_id_tx; /* embedded slave_id_[tr]x */ unsigned int slave_id_tx; /* embedded slave_id_[tr]x */
unsigned int slave_id_rx; unsigned int slave_id_rx;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment