diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2012-05-16 17:47:11 +0400 | 
|---|---|---|
| committer | Arnd Bergmann <arnd@arndb.de> | 2012-05-16 17:47:11 +0400 | 
| commit | 1fb372f88e66d3c88c863ee238b6845ee787ee5f (patch) | |
| tree | 62da48736666ba34eb28ffaee3905519ab7926de | |
| parent | 139abbf5ef977fe7cf638f4c4d0f03cc74ad8180 (diff) | |
| parent | 97e7abc5e04bea6a5db8d54ad34407bb46e85403 (diff) | |
| download | linux-1fb372f88e66d3c88c863ee238b6845ee787ee5f.tar.xz | |
Merge branch 'for-3.4/fixes-for-final' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra into fixes
* 'for-3.4/fixes-for-final' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra:
  ARM: tegra: Fix flow controller accesses
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
| -rw-r--r-- | arch/arm/mach-tegra/flowctrl.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/arm/mach-tegra/flowctrl.c b/arch/arm/mach-tegra/flowctrl.c index fef66a7486ed..f07488e0bd32 100644 --- a/arch/arm/mach-tegra/flowctrl.c +++ b/arch/arm/mach-tegra/flowctrl.c @@ -53,10 +53,10 @@ static void flowctrl_update(u8 offset, u32 value)  void flowctrl_write_cpu_csr(unsigned int cpuid, u32 value)  { -	return flowctrl_update(flowctrl_offset_halt_cpu[cpuid], value); +	return flowctrl_update(flowctrl_offset_cpu_csr[cpuid], value);  }  void flowctrl_write_cpu_halt(unsigned int cpuid, u32 value)  { -	return flowctrl_update(flowctrl_offset_cpu_csr[cpuid], value); +	return flowctrl_update(flowctrl_offset_halt_cpu[cpuid], value);  } | 
