diff options
author | Cyril Chemparathy <cyril@ti.com> | 2010-05-07 17:06:35 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-05-13 13:05:26 -0400 |
commit | 1bcd38ad2de4c1cd30387c588dfb28d637d4111d (patch) | |
tree | c8702d5bf18d3956a8a661d8aef62b79dff34cb8 /arch/arm/mach-davinci/da850.c | |
parent | 3347db8392486a1b52aab980cc445cf505c36d45 (diff) |
Davinci: timer - use ioremap()
This patch eliminates IO_ADDRESS() usage for Davinci timer definitions. The
timer code has correspondingly been modified to ioremap() MMRs instead.
Signed-off-by: Cyril Chemparathy <cyril@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/da850.c')
-rw-r--r-- | arch/arm/mach-davinci/da850.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c index fcf701628590..ebfa5ca29a81 100644 --- a/arch/arm/mach-davinci/da850.c +++ b/arch/arm/mach-davinci/da850.c | |||
@@ -800,22 +800,22 @@ static struct davinci_id da850_ids[] = { | |||
800 | 800 | ||
801 | static struct davinci_timer_instance da850_timer_instance[4] = { | 801 | static struct davinci_timer_instance da850_timer_instance[4] = { |
802 | { | 802 | { |
803 | .base = IO_ADDRESS(DA8XX_TIMER64P0_BASE), | 803 | .base = DA8XX_TIMER64P0_BASE, |
804 | .bottom_irq = IRQ_DA8XX_TINT12_0, | 804 | .bottom_irq = IRQ_DA8XX_TINT12_0, |
805 | .top_irq = IRQ_DA8XX_TINT34_0, | 805 | .top_irq = IRQ_DA8XX_TINT34_0, |
806 | }, | 806 | }, |
807 | { | 807 | { |
808 | .base = IO_ADDRESS(DA8XX_TIMER64P1_BASE), | 808 | .base = DA8XX_TIMER64P1_BASE, |
809 | .bottom_irq = IRQ_DA8XX_TINT12_1, | 809 | .bottom_irq = IRQ_DA8XX_TINT12_1, |
810 | .top_irq = IRQ_DA8XX_TINT34_1, | 810 | .top_irq = IRQ_DA8XX_TINT34_1, |
811 | }, | 811 | }, |
812 | { | 812 | { |
813 | .base = IO_ADDRESS(DA850_TIMER64P2_BASE), | 813 | .base = DA850_TIMER64P2_BASE, |
814 | .bottom_irq = IRQ_DA850_TINT12_2, | 814 | .bottom_irq = IRQ_DA850_TINT12_2, |
815 | .top_irq = IRQ_DA850_TINT34_2, | 815 | .top_irq = IRQ_DA850_TINT34_2, |
816 | }, | 816 | }, |
817 | { | 817 | { |
818 | .base = IO_ADDRESS(DA850_TIMER64P3_BASE), | 818 | .base = DA850_TIMER64P3_BASE, |
819 | .bottom_irq = IRQ_DA850_TINT12_3, | 819 | .bottom_irq = IRQ_DA850_TINT12_3, |
820 | .top_irq = IRQ_DA850_TINT34_3, | 820 | .top_irq = IRQ_DA850_TINT34_3, |
821 | }, | 821 | }, |