From: Masahiro Yamada Date: Fri, 14 Feb 2020 07:40:23 +0000 (+0900) Subject: mmc: sdhci: use lower_32_bit2() and upper_32_bits() for setting adma_addr X-Git-Tag: v2020.04-rc3~5^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a2b0221c9cb332415648c061c85f0ab1595c3429;p=oweals%2Fu-boot.git mmc: sdhci: use lower_32_bit2() and upper_32_bits() for setting adma_addr Use {lower,upper}_32_bits() instead of the combination of cast and shift. Signed-off-by: Masahiro Yamada Reviewed-by: Jaehoon Chung --- diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c index b4713e7b9b..fefe81016e 100644 --- a/drivers/mmc/sdhci.c +++ b/drivers/mmc/sdhci.c @@ -153,9 +153,10 @@ static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data, } else if (host->flags & (USE_ADMA | USE_ADMA64)) { sdhci_prepare_adma_table(host, data); - sdhci_writel(host, (u32)host->adma_addr, SDHCI_ADMA_ADDRESS); + sdhci_writel(host, lower_32_bits(host->adma_addr), + SDHCI_ADMA_ADDRESS); if (host->flags & USE_ADMA64) - sdhci_writel(host, (u64)host->adma_addr >> 32, + sdhci_writel(host, upper_32_bits(host->adma_addr), SDHCI_ADMA_ADDRESS_HI); }