aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/x86/mm/iomap_32.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2019-11-20 15:30:44 +0100
committerIngo Molnar <mingo@kernel.org>2019-12-10 10:12:55 +0100
commitecdd6ee77b73d11fcf2ca6739e4d1fe590446599 (patch)
tree54175011f5a9565967dba76f79fdc0e6133c93e5 /arch/x86/mm/iomap_32.c
parentx86/mm/pat: Move the memtype related files to arch/x86/mm/pat/ (diff)
downloadwireguard-linux-ecdd6ee77b73d11fcf2ca6739e4d1fe590446599.tar.xz
wireguard-linux-ecdd6ee77b73d11fcf2ca6739e4d1fe590446599.zip
x86/mm/pat: Standardize on memtype_*() prefix for APIs
Half of our memtype APIs are memtype_ prefixed, the other half are _memtype suffixed: reserve_memtype() free_memtype() kernel_map_sync_memtype() io_reserve_memtype() io_free_memtype() memtype_check_insert() memtype_erase() memtype_lookup() memtype_copy_nth_element() Use prefixes consistently, like most other modern kernel APIs: reserve_memtype() => memtype_reserve() free_memtype() => memtype_free() kernel_map_sync_memtype() => memtype_kernel_map_sync() io_reserve_memtype() => memtype_reserve_io() io_free_memtype() => memtype_free_io() memtype_check_insert() => memtype_check_insert() memtype_erase() => memtype_erase() memtype_lookup() => memtype_lookup() memtype_copy_nth_element() => memtype_copy_nth_element() Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/mm/iomap_32.c')
-rw-r--r--arch/x86/mm/iomap_32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/iomap_32.c b/arch/x86/mm/iomap_32.c
index 6748b4c2baff..4a0762ebe051 100644
--- a/arch/x86/mm/iomap_32.c
+++ b/arch/x86/mm/iomap_32.c
@@ -26,7 +26,7 @@ int iomap_create_wc(resource_size_t base, unsigned long size, pgprot_t *prot)
if (!is_io_mapping_possible(base, size))
return -EINVAL;
- ret = io_reserve_memtype(base, base + size, &pcm);
+ ret = memtype_reserve_io(base, base + size, &pcm);
if (ret)
return ret;
@@ -40,7 +40,7 @@ EXPORT_SYMBOL_GPL(iomap_create_wc);
void iomap_free(resource_size_t base, unsigned long size)
{
- io_free_memtype(base, base + size);
+ memtype_free_io(base, base + size);
}
EXPORT_SYMBOL_GPL(iomap_free);