diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2011-02-01 15:08:53 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-02-11 10:25:56 +0900 |
commit | 401945212b8a5c3a66218771745e6cfca16e5157 (patch) | |
tree | 24a9a81762169e6c9e3995137d91ee828221f10d /arch/arm/plat-s5p/sysmmu.c | |
parent | 3de04984c62559b7d59ecb3ad010fd148f90f030 (diff) | |
download | op-kernel-dev-401945212b8a5c3a66218771745e6cfca16e5157.zip op-kernel-dev-401945212b8a5c3a66218771745e6cfca16e5157.tar.gz |
ARM: S5PV310: Cleanup System MMU
This patch cleans following up.
- Moved definition of System MMU IPNUM into mach/sysmmu.h
- Removed useless SYSMMU_DEBUG configuration
- Removed useless header file plat/sysmmu.h
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-s5p/sysmmu.c')
-rw-r--r-- | arch/arm/plat-s5p/sysmmu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/plat-s5p/sysmmu.c b/arch/arm/plat-s5p/sysmmu.c index d804914..ffe8a48 100644 --- a/arch/arm/plat-s5p/sysmmu.c +++ b/arch/arm/plat-s5p/sysmmu.c @@ -16,8 +16,6 @@ #include <mach/regs-sysmmu.h> #include <mach/sysmmu.h> -#include <plat/sysmmu.h> - struct sysmmu_controller s5p_sysmmu_cntlrs[S5P_SYSMMU_TOTAL_IPNUM]; void s5p_sysmmu_register(struct sysmmu_controller *sysmmuconp) @@ -123,7 +121,7 @@ static int s5p_sysmmu_set_tablebase(sysmmu_ips ips) : "=r" (pg) : : "cc"); \ pg &= ~0x3fff; - sysmmu_debug("CP15 TTBR0 : 0x%x\n", pg); + printk(KERN_INFO "%s: CP15 TTBR0 : 0x%x\n", __func__, pg); /* Set sysmmu page table base address */ __raw_writel(pg, sysmmuconp->regs + S5P_PT_BASE_ADDR); |