diff options
author | Cyril Chemparathy <cyril@ti.com> | 2010-05-07 17:06:34 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-05-13 13:05:24 -0400 |
commit | 3347db8392486a1b52aab980cc445cf505c36d45 (patch) | |
tree | d0ee14d2c658b48a355d3e845dd791b5f3736f33 /arch/arm/mach-davinci/dm646x.c | |
parent | db6db5d8474b16811566e0e919d060e2856d5ad9 (diff) |
Davinci: jtag_id - use ioremap()
This patch replaces the jtag id base info in davinci_soc_info with a physical
address which is then ioremap()ed within common code.
This patch (in combination with a similar change for PSC) will allow us to
eliminate the SYSCFG nastiness in DA8xx code.
Signed-off-by: Cyril Chemparathy <cyril@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm646x.c')
-rw-r--r-- | arch/arm/mach-davinci/dm646x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c index 95fc981e45af..f9a8cc46eafd 100644 --- a/arch/arm/mach-davinci/dm646x.c +++ b/arch/arm/mach-davinci/dm646x.c | |||
@@ -815,7 +815,7 @@ static struct platform_device dm646x_serial_device = { | |||
815 | static struct davinci_soc_info davinci_soc_info_dm646x = { | 815 | static struct davinci_soc_info davinci_soc_info_dm646x = { |
816 | .io_desc = dm646x_io_desc, | 816 | .io_desc = dm646x_io_desc, |
817 | .io_desc_num = ARRAY_SIZE(dm646x_io_desc), | 817 | .io_desc_num = ARRAY_SIZE(dm646x_io_desc), |
818 | .jtag_id_base = IO_ADDRESS(0x01c40028), | 818 | .jtag_id_reg = 0x01c40028, |
819 | .ids = dm646x_ids, | 819 | .ids = dm646x_ids, |
820 | .ids_num = ARRAY_SIZE(dm646x_ids), | 820 | .ids_num = ARRAY_SIZE(dm646x_ids), |
821 | .cpu_clks = dm646x_clks, | 821 | .cpu_clks = dm646x_clks, |