ARM: hisi: rename smp_prepares_cpus function
As hix5hd2 and hip01 has the same .smp_prepare_cpus in struct smp_operations, so rename hix5hd2_smp_prepare_cpus to hisi_common_smp_prepare_cpus. the hip01 will use hisi_common_smp_prepare_cpus in its struct smp_operations. Signed-off-by: Wang Long <long.wanglong@huawei.com> Signed-off-by: Wei Xu <xuwei5@hisilicon.com> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
82fd132c0d
commit
e243f94392
1 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ struct smp_operations hi3xxx_smp_ops __initdata = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static void __init hix5hd2_smp_prepare_cpus(unsigned int max_cpus)
|
static void __init hisi_common_smp_prepare_cpus(unsigned int max_cpus)
|
||||||
{
|
{
|
||||||
hisi_enable_scu_a9();
|
hisi_enable_scu_a9();
|
||||||
}
|
}
|
||||||
|
@ -125,7 +125,7 @@ static int hix5hd2_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
||||||
|
|
||||||
|
|
||||||
struct smp_operations hix5hd2_smp_ops __initdata = {
|
struct smp_operations hix5hd2_smp_ops __initdata = {
|
||||||
.smp_prepare_cpus = hix5hd2_smp_prepare_cpus,
|
.smp_prepare_cpus = hisi_common_smp_prepare_cpus,
|
||||||
.smp_boot_secondary = hix5hd2_boot_secondary,
|
.smp_boot_secondary = hix5hd2_boot_secondary,
|
||||||
#ifdef CONFIG_HOTPLUG_CPU
|
#ifdef CONFIG_HOTPLUG_CPU
|
||||||
.cpu_die = hix5hd2_cpu_die,
|
.cpu_die = hix5hd2_cpu_die,
|
||||||
|
|
Loading…
Reference in a new issue