Skip to content

Commit

Permalink
mmc: omap: Remove mem_res field from struct mmc_omap_host
Browse files Browse the repository at this point in the history
Field mem_res in struct mmc_omap_host is used only once in mmc_omap_probe
when setting the phys_base field so we may just se the phys_base straight
and remove needless mem_res.

Signed-off-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Tested-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Chris Ball <chris@printf.net>
  • Loading branch information
Jarkko Nikula authored and Chris Ball committed Feb 22, 2014
1 parent 5b7d23a commit 2ca5dc6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/mmc/host/omap.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ struct mmc_omap_host {
u32 dma_rx_burst;
struct dma_chan *dma_tx;
u32 dma_tx_burst;
struct resource *mem_res;
void __iomem *virt_base;
unsigned int phys_base;
int irq;
Expand Down Expand Up @@ -1372,10 +1371,9 @@ static int mmc_omap_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, host);

host->id = pdev->id;
host->mem_res = res;
host->irq = irq;
host->use_dma = 1;
host->phys_base = host->mem_res->start;
host->phys_base = res->start;
host->virt_base = ioremap(res->start, resource_size(res));
if (!host->virt_base)
goto err_ioremap;
Expand Down

0 comments on commit 2ca5dc6

Please sign in to comment.