diff options
author | Tang Bin <tangbin@cmss.chinamobile.com> | 2020-03-27 12:36:39 +0800 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2020-03-27 13:26:25 +0100 |
commit | 92075d98abf0f42db1cb518150364f196d4ad217 (patch) | |
tree | a048a46341446ea2f8c41c3d894853c27024a7a3 /drivers/mmc | |
parent | 9e2582e57407e390a94de7848a809540694bef35 (diff) | |
download | linux-92075d98abf0f42db1cb518150364f196d4ad217.tar.gz linux-92075d98abf0f42db1cb518150364f196d4ad217.tar.bz2 linux-92075d98abf0f42db1cb518150364f196d4ad217.zip |
mmc: cavium-octeon: remove nonsense variable coercion
In this function, the variable 'base' is already 'void __iomem *base',
and the return function 'devm_platform_ioremap_resource()' also returns
this type, so the mandatory definition here is redundant.
Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
Link: https://lore.kernel.org/r/20200327043639.6564-1-tangbin@cmss.chinamobile.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/cavium-octeon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/cavium-octeon.c b/drivers/mmc/host/cavium-octeon.c index 916746c6c2c7..e299cdd1e619 100644 --- a/drivers/mmc/host/cavium-octeon.c +++ b/drivers/mmc/host/cavium-octeon.c @@ -207,13 +207,13 @@ static int octeon_mmc_probe(struct platform_device *pdev) base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(base)) return PTR_ERR(base); - host->base = (void __iomem *)base; + host->base = base; host->reg_off = 0; base = devm_platform_ioremap_resource(pdev, 1); if (IS_ERR(base)) return PTR_ERR(base); - host->dma_base = (void __iomem *)base; + host->dma_base = base; /* * To keep the register addresses shared we intentionaly use * a negative offset here, first register used on Octeon therefore |