mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-22 17:33:01 +00:00
ARM: sa11x0: assabet: fix build warning
Since a32618d2
(ARM: pgtable: switch to use pgtable-nopud.h), assabet
warns as follows:
arch/arm/mach-sa1100/assabet.c: In function 'map_sa1100_gpio_regs':
arch/arm/mach-sa1100/assabet.c:264: warning: passing argument 1 of 'pmd_offset' from incompatible pointer type
Fix this by adding the necessary pud_offset() macro.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
716a3dc200
commit
a61c2332f8
@ -268,7 +268,7 @@ static void __init map_sa1100_gpio_regs( void )
|
|||||||
int prot = PMD_TYPE_SECT | PMD_SECT_AP_WRITE | PMD_DOMAIN(DOMAIN_IO);
|
int prot = PMD_TYPE_SECT | PMD_SECT_AP_WRITE | PMD_DOMAIN(DOMAIN_IO);
|
||||||
pmd_t *pmd;
|
pmd_t *pmd;
|
||||||
|
|
||||||
pmd = pmd_offset(pgd_offset_k(virt), virt);
|
pmd = pmd_offset(pud_offset(pgd_offset_k(virt), virt), virt);
|
||||||
*pmd = __pmd(phys | prot);
|
*pmd = __pmd(phys | prot);
|
||||||
flush_pmd_entry(pmd);
|
flush_pmd_entry(pmd);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user