arm64: mm: Correct fixmap pagetable types

Compiling with STRICT_MM_TYPECHECKS gives the following
arch/arm64/mm/ioremap.c: In function ‘early_ioremap_init’:
arch/arm64/mm/ioremap.c:152:2: warning: passing argument 3 of
‘pud_populate’ from incompatible pointer type
pud_populate(&init_mm, pud, bm_pmd);

The data types for bm_pmd and bm_pud are incorrectly set to pte_t.
This patch corrects these types.

Signed-off-by: Steve Capper <steve.capper@linaro.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>

authored by Steve Capper and committed by Catalin Marinas c0260ba9 971a5b6f

+2 -2
+2 -2
arch/arm64/mm/ioremap.c
··· 105 105 106 106 static pte_t bm_pte[PTRS_PER_PTE] __page_aligned_bss; 107 107 #if CONFIG_ARM64_PGTABLE_LEVELS > 2 108 - static pte_t bm_pmd[PTRS_PER_PMD] __page_aligned_bss; 108 + static pmd_t bm_pmd[PTRS_PER_PMD] __page_aligned_bss; 109 109 #endif 110 110 #if CONFIG_ARM64_PGTABLE_LEVELS > 3 111 - static pte_t bm_pud[PTRS_PER_PUD] __page_aligned_bss; 111 + static pud_t bm_pud[PTRS_PER_PUD] __page_aligned_bss; 112 112 #endif 113 113 114 114 static inline pud_t * __init early_ioremap_pud(unsigned long addr)