mirror of https://gitee.com/openkylin/linux.git
Merge branch 'sfi-release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6
* 'sfi-release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6: SFI: use ioremap_cache() instead of ioremap()
This commit is contained in:
commit
2c79c69adc
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue