diff options
Diffstat (limited to 'arch/arm/mach-tegra/apbio.c')
-rw-r--r-- | arch/arm/mach-tegra/apbio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/apbio.c b/arch/arm/mach-tegra/apbio.c index dc0fe389be56..643a37809a15 100644 --- a/arch/arm/mach-tegra/apbio.c +++ b/arch/arm/mach-tegra/apbio.c | |||
@@ -293,12 +293,12 @@ static apbio_write_fptr apbio_write; | |||
293 | 293 | ||
294 | static u32 tegra_apb_readl_direct(unsigned long offset) | 294 | static u32 tegra_apb_readl_direct(unsigned long offset) |
295 | { | 295 | { |
296 | return readl(IO_TO_VIRT(offset)); | 296 | return readl(IO_ADDRESS(offset)); |
297 | } | 297 | } |
298 | 298 | ||
299 | static void tegra_apb_writel_direct(u32 value, unsigned long offset) | 299 | static void tegra_apb_writel_direct(u32 value, unsigned long offset) |
300 | { | 300 | { |
301 | writel(value, IO_TO_VIRT(offset)); | 301 | writel(value, IO_ADDRESS(offset)); |
302 | } | 302 | } |
303 | 303 | ||
304 | void tegra_apb_io_init(void) | 304 | void tegra_apb_io_init(void) |