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

Commit 2c79c69a authored by Linus Torvalds's avatar Linus Torvalds
Browse files
* 'sfi-release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6:
  SFI: use ioremap_cache() instead of ioremap()
parents db9effe9 5b026c4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ static void __iomem * __ref sfi_map_memory(u64 phys, u32 size)
		return NULL;

	if (sfi_use_ioremap)
		return ioremap(phys, size);
		return ioremap_cache(phys, size);
	else
		return early_ioremap(phys, size);
}