示例#1
0
文件: platsmp.c 项目: 08opt/linux
int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
{
	if (is_sh73a0())
		return sh73a0_boot_secondary(cpu);

	return -ENOSYS;
}
示例#2
0
int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
{
	if (machine_is_ag5evm())
		return sh73a0_boot_secondary(cpu);

	return -ENOSYS;
}
示例#3
0
文件: platsmp.c 项目: AllenWeb/linux
int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
{
	if (is_sh73a0())
		return sh73a0_boot_secondary(cpu);

	if (is_r8a7779())
		return r8a7779_boot_secondary(cpu);

	if (is_emev2())
		return emev2_boot_secondary(cpu);

	return -ENOSYS;
}