On Sat, May 07, 2011 at 01:35:47AM +0530, Jayachandran C wrote:
> Add Netlogic Microsystems company ID and processor IDs for XLR
> and XLS processors for CPU probe. Add CPU_XLR to cpu_type_enum.
>
> Signed-off-by: Jayachandran C <jayachandranc@netlogicmicro.com>
> ---
> arch/mips/include/asm/cpu.h | 27 ++++++++++++++++++++
> arch/mips/kernel/cpu-probe.c | 55
> ++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 82 insertions(+), 0 deletions(-)
>
> diff --git a/arch/mips/include/asm/cpu.h b/arch/mips/include/asm/cpu.h
> index 8687753..34c0d3c 100644
[...]
> diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
> index f65d4c8..130aa7a 100644
> --- a/arch/mips/kernel/cpu-probe.c
> +++ b/arch/mips/kernel/cpu-probe.c
> @@ -1034,6 +1087,8 @@ __cpuinit void cpu_probe(void)
> break;
> case PRID_COMP_INGENIC:
> cpu_probe_ingenic(c, cpu);
> + case PRID_COMP_NETLOGIC:
> + cpu_probe_netlogic(c, cpu);
> break;
> }
Found an issue here on review, this removed a break after PRID_COMP_INGENIC,
I will send an updated patch today.
JC.
|