summaryrefslogtreecommitdiffstats
path: root/arch/arm64
diff options
context:
space:
mode:
authorLinus Torvalds2013-03-28 21:45:49 +0100
committerLinus Torvalds2013-03-28 21:45:49 +0100
commitd3f72cfb7aa2c92debecacddf65fdef582f238a3 (patch)
treeeccea723463e8521a16c52bc8f4c3f448f2a9083 /arch/arm64
parentMerge tag 'fbdev-fixes-3.9-rc4' of git://gitorious.org/linux-omap-dss2/linux (diff)
parentARM64: early_printk: Fix check for CONFIG_ARM64_64K_PAGES (diff)
downloadkernel-qcow2-linux-d3f72cfb7aa2c92debecacddf65fdef582f238a3.tar.gz
kernel-qcow2-linux-d3f72cfb7aa2c92debecacddf65fdef582f238a3.tar.xz
kernel-qcow2-linux-d3f72cfb7aa2c92debecacddf65fdef582f238a3.zip
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
Diffstat (limited to 'arch/arm64')
-rw-r--r--arch/arm64/mm/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c
index 224b44ab534e..70b8cd4021c4 100644
--- a/arch/arm64/mm/mmu.c
+++ b/arch/arm64/mm/mmu.c
@@ -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)
{
unsigned long size, mask;
- bool page64k = IS_ENABLED(ARM64_64K_PAGES);
+ bool page64k = IS_ENABLED(CONFIG_ARM64_64K_PAGES);
pgd_t *pgd;
pud_t *pud;
pmd_t *pmd;