aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorAapo Vienamo <aapo.vienamo@iki.fi>2018-05-04 12:20:53 +0300
committerUlf Hansson <ulf.hansson@linaro.org>2018-05-08 11:03:39 +0200
commitcf56c819c851a542a43b3b9d4330ed6821a62da1 (patch)
tree82990af887fac883fd8709581d9d3d29c6af39a8 /drivers/mmc
parentmmc: core: Drop unused define for timeout (diff)
downloadlinux-dev-cf56c819c851a542a43b3b9d4330ed6821a62da1.tar.xz
linux-dev-cf56c819c851a542a43b3b9d4330ed6821a62da1.zip
mmc: tegra: remove redundant return statement
A redundant return statement is removed from tegra_sdhci_set_uhs_signaling(). The function returns void and the return does not affect the control flow of the function. Signed-off-by: Aapo Vienamo <aapo.vienamo@iki.fi> Acked-by: Thierry Reding <treding@nvidia.com> Acked-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/host/sdhci-tegra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c
index b877c13184c2..970d38f68939 100644
--- a/drivers/mmc/host/sdhci-tegra.c
+++ b/drivers/mmc/host/sdhci-tegra.c
@@ -231,7 +231,7 @@ static void tegra_sdhci_set_uhs_signaling(struct sdhci_host *host,
if (timing == MMC_TIMING_UHS_DDR50)
tegra_host->ddr_signaling = true;
- return sdhci_set_uhs_signaling(host, timing);
+ sdhci_set_uhs_signaling(host, timing);
}
static unsigned int tegra_sdhci_get_max_clock(struct sdhci_host *host)