diff options
Diffstat (limited to 'arch/arm/plat-s3c64xx')
-rw-r--r-- | arch/arm/plat-s3c64xx/cpu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/plat-s3c64xx/cpu.c b/arch/arm/plat-s3c64xx/cpu.c index 0bbc0e2dc5d4..36182fcfaebc 100644 --- a/arch/arm/plat-s3c64xx/cpu.c +++ b/arch/arm/plat-s3c64xx/cpu.c | |||
@@ -68,7 +68,7 @@ static struct cpu_table cpu_ids[] __initdata = { | |||
68 | 68 | ||
69 | static struct map_desc s3c_iodesc[] __initdata = { | 69 | static struct map_desc s3c_iodesc[] __initdata = { |
70 | { | 70 | { |
71 | .virtual = S3C_VA_SYS, | 71 | .virtual = (unsigned long)S3C_VA_SYS, |
72 | .pfn = __phys_to_pfn(S3C64XX_PA_SYSCON), | 72 | .pfn = __phys_to_pfn(S3C64XX_PA_SYSCON), |
73 | .length = SZ_4K, | 73 | .length = SZ_4K, |
74 | .type = MT_DEVICE, | 74 | .type = MT_DEVICE, |
@@ -78,22 +78,22 @@ static struct map_desc s3c_iodesc[] __initdata = { | |||
78 | .length = SZ_4K, | 78 | .length = SZ_4K, |
79 | .type = MT_DEVICE, | 79 | .type = MT_DEVICE, |
80 | }, { | 80 | }, { |
81 | .virtual = S3C_VA_VIC0, | 81 | .virtual = (unsigned long)S3C_VA_VIC0, |
82 | .pfn = __phys_to_pfn(S3C64XX_PA_VIC0), | 82 | .pfn = __phys_to_pfn(S3C64XX_PA_VIC0), |
83 | .length = SZ_16K, | 83 | .length = SZ_16K, |
84 | .type = MT_DEVICE, | 84 | .type = MT_DEVICE, |
85 | }, { | 85 | }, { |
86 | .virtual = S3C_VA_VIC1, | 86 | .virtual = (unsigned long)S3C_VA_VIC1, |
87 | .pfn = __phys_to_pfn(S3C64XX_PA_VIC1), | 87 | .pfn = __phys_to_pfn(S3C64XX_PA_VIC1), |
88 | .length = SZ_16K, | 88 | .length = SZ_16K, |
89 | .type = MT_DEVICE, | 89 | .type = MT_DEVICE, |
90 | }, { | 90 | }, { |
91 | .virtual = S3C_VA_TIMER, | 91 | .virtual = (unsigned long)S3C_VA_TIMER, |
92 | .pfn = __phys_to_pfn(S3C_PA_TIMER), | 92 | .pfn = __phys_to_pfn(S3C_PA_TIMER), |
93 | .length = SZ_16K, | 93 | .length = SZ_16K, |
94 | .type = MT_DEVICE, | 94 | .type = MT_DEVICE, |
95 | }, { | 95 | }, { |
96 | .virtual = S3C64XX_VA_GPIO, | 96 | .virtual = (unsigned long)S3C64XX_VA_GPIO, |
97 | .pfn = __phys_to_pfn(S3C64XX_PA_GPIO), | 97 | .pfn = __phys_to_pfn(S3C64XX_PA_GPIO), |
98 | .length = SZ_4K, | 98 | .length = SZ_4K, |
99 | .type = MT_DEVICE, | 99 | .type = MT_DEVICE, |