Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 613f7769 authored by Hiroshi DOYU's avatar Hiroshi DOYU Committed by Tony Lindgren
Browse files

OMAP: iommu: fix wrong argument in flush_cache_vmap()



The second argument should be the end address, not the
length. Actually there will not be any effect on the behavior of this
driver since flush_cache_vmap() calls flush_cache_all() in the end.

Signed-off-by: default avatarHiroshi DOYU <Hiroshi.DOYU@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent af933f47
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -199,7 +199,7 @@ static void *vmap_sg(const struct sg_table *sgt)
		va += bytes;
	}

	flush_cache_vmap(new->addr, total);
	flush_cache_vmap(new->addr, new->addr + total);
	return new->addr;

err_out: