diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2024-10-29 14:17:47 +0100 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2024-10-30 11:55:37 +0100 |
commit | 767c2b21cb5855455aeff6bd7fb76585dcab5860 (patch) | |
tree | e74e290b0033b87dc44eb53d2d79caded179baf4 /drivers/mmc | |
parent | mmc: bcm2835: Introduce proper clock handling (diff) | |
download | linux-767c2b21cb5855455aeff6bd7fb76585dcab5860.tar.xz linux-767c2b21cb5855455aeff6bd7fb76585dcab5860.zip |
mmc: core: Simplify sd_uhs2_power_up()
Drop the redundant err-parameter and just return the result from
host->ops->uhs2_control() instead.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>
Message-ID: <20241029131752.226764-2-ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/sd_uhs2.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/mmc/core/sd_uhs2.c b/drivers/mmc/core/sd_uhs2.c index ddd2291ad7c4..06857e1bbdb0 100644 --- a/drivers/mmc/core/sd_uhs2.c +++ b/drivers/mmc/core/sd_uhs2.c @@ -48,8 +48,6 @@ struct sd_uhs2_wait_active_state_data { static int sd_uhs2_power_up(struct mmc_host *host) { - int err; - if (host->ios.power_mode == MMC_POWER_ON) return 0; @@ -58,9 +56,7 @@ static int sd_uhs2_power_up(struct mmc_host *host) host->ios.timing = MMC_TIMING_UHS2_SPEED_A; host->ios.power_mode = MMC_POWER_ON; - err = host->ops->uhs2_control(host, UHS2_SET_IOS); - - return err; + return host->ops->uhs2_control(host, UHS2_SET_IOS); } static int sd_uhs2_power_off(struct mmc_host *host) |