diff options
author | Helge Deller <deller@gmx.de> | 2008-12-31 03:12:10 (GMT) |
---|---|---|
committer | Kyle McMartin <kyle@mcmartin.ca> | 2009-01-05 19:09:02 (GMT) |
commit | ef017bebd01c1b4e075d649eee0c8c1c79f9ceb9 (patch) | |
tree | 56643af889719538c1cbade6dfe5b7cefb1d0ffa /arch/parisc/kernel/topology.c | |
parent | 7f2347a44d2d5c8edf04d6950f4fb21ac868d256 (diff) | |
download | linux-ef017bebd01c1b4e075d649eee0c8c1c79f9ceb9.tar.xz |
parisc: Replace NR_CPUS in parisc code
parisc: Replace most arrays sized by NR_CPUS with percpu variables.
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc/kernel/topology.c')
-rw-r--r-- | arch/parisc/kernel/topology.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/topology.c b/arch/parisc/kernel/topology.c index d71cb01..f515938 100644 --- a/arch/parisc/kernel/topology.c +++ b/arch/parisc/kernel/topology.c @@ -22,14 +22,14 @@ #include <linux/cpu.h> #include <linux/cache.h> -static struct cpu cpu_devices[NR_CPUS] __read_mostly; +static DEFINE_PER_CPU(struct cpu, cpu_devices); static int __init topology_init(void) { int num; for_each_present_cpu(num) { - register_cpu(&cpu_devices[num], num); + register_cpu(&per_cpu(cpu_devices, num), num); } return 0; } |