From: Aapo Vienamo Date: Fri, 4 May 2018 09:20:53 +0000 (+0300) Subject: mmc: tegra: remove redundant return statement X-Git-Tag: v4.18-rc1~137^2~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cf56c819c851a542a43b3b9d4330ed6821a62da1;p=thirdparty%2Flinux.git 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 Acked-by: Thierry Reding Acked-by: Adrian Hunter Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c index b877c13184c2d..970d38f689399 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)