diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2014-04-14 19:10:07 +0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-05-08 20:18:52 +0400 |
commit | 952f4ca79b4ec7114291aa711add1b36c6ba7515 (patch) | |
tree | 16049379e6e358475092618d96893fb15770d189 /arch/arm/mach-mvebu/coherency.h | |
parent | b41375f71aceadb7d74a18aafba4da5024fc104b (diff) | |
download | linux-952f4ca79b4ec7114291aa711add1b36c6ba7515.tar.xz |
ARM: mvebu: Remove the unused argument of set_cpu_coherent()
set_cpu_coherent() took the SMP group ID as parameter. But this
parameter was never used, and the CPU always uses the SMP group 0. So
we can remove this parameter.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Link: https://lkml.kernel.org/r/1397488214-20685-5-git-send-email-gregory.clement@free-electrons.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-mvebu/coherency.h')
-rw-r--r-- | arch/arm/mach-mvebu/coherency.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mvebu/coherency.h b/arch/arm/mach-mvebu/coherency.h index ab594a75fef3..54cb7607b526 100644 --- a/arch/arm/mach-mvebu/coherency.h +++ b/arch/arm/mach-mvebu/coherency.h @@ -15,8 +15,8 @@ #define __MACH_370_XP_COHERENCY_H extern unsigned long coherency_phys_base; +int set_cpu_coherent(void); -int set_cpu_coherent(int smp_group_id); int coherency_init(void); int coherency_available(void); |