Staging: Panel: panel: Fixed checkpatch line length warnings
[linux/fpc-iii.git] / arch / arm / mach-shmobile / platsmp.c
blob1f958d7b0bac77d7eff13ac83eb7d02309fe9092
1 /*
2 * SMP support for R-Mobile / SH-Mobile
4 * Copyright (C) 2010 Magnus Damm
5 * Copyright (C) 2011 Paul Mundt
7 * Based on vexpress, Copyright (C) 2002 ARM Ltd, All Rights Reserved
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 #include <linux/init.h>
14 #include <linux/smp.h>
16 void __init shmobile_smp_init_cpus(unsigned int ncores)
18 unsigned int i;
20 if (ncores > nr_cpu_ids) {
21 pr_warn("SMP: %u cores greater than maximum (%u), clipping\n",
22 ncores, nr_cpu_ids);
23 ncores = nr_cpu_ids;
26 for (i = 0; i < ncores; i++)
27 set_cpu_possible(i, true);