Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/cmarinas/linux-aarch64
Pull arm64 fix from Catalin Marinas: "Fix IS_ENABLED() usage typo (missing CONFIG_ prefix)." * tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/cmarinas/linux-aarch64: ARM64: early_printk: Fix check for CONFIG_ARM64_64K_PAGES
This commit is contained in:
@@ -261,7 +261,7 @@ static void __init create_mapping(phys_addr_t phys, unsigned long virt,
|
|||||||
void __iomem * __init early_io_map(phys_addr_t phys, unsigned long virt)
|
void __iomem * __init early_io_map(phys_addr_t phys, unsigned long virt)
|
||||||
{
|
{
|
||||||
unsigned long size, mask;
|
unsigned long size, mask;
|
||||||
bool page64k = IS_ENABLED(ARM64_64K_PAGES);
|
bool page64k = IS_ENABLED(CONFIG_ARM64_64K_PAGES);
|
||||||
pgd_t *pgd;
|
pgd_t *pgd;
|
||||||
pud_t *pud;
|
pud_t *pud;
|
||||||
pmd_t *pmd;
|
pmd_t *pmd;
|
||||||
|
Reference in New Issue
Block a user