952f4ca79b
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>
24 lines
593 B
C
24 lines
593 B
C
/*
|
|
* arch/arm/mach-mvebu/include/mach/coherency.h
|
|
*
|
|
*
|
|
* Coherency fabric (Aurora) support for Armada 370 and XP platforms.
|
|
*
|
|
* Copyright (C) 2012 Marvell
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#ifndef __MACH_370_XP_COHERENCY_H
|
|
#define __MACH_370_XP_COHERENCY_H
|
|
|
|
extern unsigned long coherency_phys_base;
|
|
int set_cpu_coherent(void);
|
|
|
|
int coherency_init(void);
|
|
int coherency_available(void);
|
|
|
|
#endif /* __MACH_370_XP_COHERENCY_H */
|