diff options
author | Miles Chen <miles.chen@mediatek.com> | 2017-01-13 08:59:35 +0300 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2017-01-13 15:06:29 +0300 |
commit | eac8017f0c4719d30f89d1a247de7bfbf6d0da4f (patch) | |
tree | 265e2e7c2d882ac1e0c2c22522ba8fa4827dad82 /arch | |
parent | f92f5ce01ee6a6a86cbfc4e3b0d18529c302b1ea (diff) | |
download | linux-eac8017f0c4719d30f89d1a247de7bfbf6d0da4f.tar.xz |
arm64: mm: use phys_addr_t instead of unsigned long in __map_memblock
Cosmetic change to use phys_addr_t instead of unsigned long for the
return value of __pa_symbol().
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Miles Chen <miles.chen@mediatek.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/mm/mmu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c index a43415784e12..2131521ddc24 100644 --- a/arch/arm64/mm/mmu.c +++ b/arch/arm64/mm/mmu.c @@ -360,8 +360,8 @@ static void create_mapping_late(phys_addr_t phys, unsigned long virt, static void __init __map_memblock(pgd_t *pgd, phys_addr_t start, phys_addr_t end) { - unsigned long kernel_start = __pa_symbol(_text); - unsigned long kernel_end = __pa_symbol(__init_begin); + phys_addr_t kernel_start = __pa_symbol(_text); + phys_addr_t kernel_end = __pa_symbol(__init_begin); /* * Take care not to create a writable alias for the |