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>
This commit is contained in:
committed by
Kyle McMartin
parent
7f2347a44d
commit
ef017bebd0
@@ -316,7 +316,7 @@ static int __init parisc_init(void)
|
||||
|
||||
processor_init();
|
||||
printk(KERN_INFO "CPU(s): %d x %s at %d.%06d MHz\n",
|
||||
boot_cpu_data.cpu_count,
|
||||
num_present_cpus(),
|
||||
boot_cpu_data.cpu_name,
|
||||
boot_cpu_data.cpu_hz / 1000000,
|
||||
boot_cpu_data.cpu_hz % 1000000 );
|
||||
@@ -382,8 +382,8 @@ void start_parisc(void)
|
||||
if (ret >= 0 && coproc_cfg.ccr_functional) {
|
||||
mtctl(coproc_cfg.ccr_functional, 10);
|
||||
|
||||
cpu_data[cpunum].fp_rev = coproc_cfg.revision;
|
||||
cpu_data[cpunum].fp_model = coproc_cfg.model;
|
||||
per_cpu(cpu_data, cpunum).fp_rev = coproc_cfg.revision;
|
||||
per_cpu(cpu_data, cpunum).fp_model = coproc_cfg.model;
|
||||
|
||||
asm volatile ("fstd %fr0,8(%sp)");
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user