[PARISC] Prevent processor_probe() from clobbering cpu_data[0]
processor_probe() shouldn't clobber cpu_data[0] cpu_data[0].it_value (used by timer_interrupt()) is already set. Signed-off-by: Grant Grundler <grundler@parisc-linux.org> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
This commit is contained in:
parent
9cf8f370f0
commit
7908a0c72e
1 changed files with 3 additions and 2 deletions
|
@ -143,7 +143,8 @@ static int __init processor_probe(struct parisc_device *dev)
|
|||
p = &cpu_data[cpuid];
|
||||
boot_cpu_data.cpu_count++;
|
||||
|
||||
/* initialize counters */
|
||||
/* initialize counters - CPU 0 gets it_value set in time_init() */
|
||||
if (cpuid)
|
||||
memset(p, 0, sizeof(struct cpuinfo_parisc));
|
||||
|
||||
p->loops_per_jiffy = loops_per_jiffy;
|
||||
|
|
Loading…
Reference in a new issue