File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ struct cpuinfo_parisc {
97
97
unsigned long cpu_loc ; /* CPU location from PAT firmware */
98
98
unsigned int state ;
99
99
struct parisc_device * dev ;
100
- unsigned long loops_per_jiffy ;
101
100
};
102
101
103
102
extern struct system_cpuinfo_parisc boot_cpu_data ;
Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ static int __init processor_probe(struct parisc_device *dev)
163
163
if (cpuid )
164
164
memset (p , 0 , sizeof (struct cpuinfo_parisc ));
165
165
166
- p -> loops_per_jiffy = loops_per_jiffy ;
167
166
p -> dev = dev ; /* Save IODC data in case we need it */
168
167
p -> hpa = dev -> hpa .start ; /* save CPU hpa */
169
168
p -> cpuid = cpuid ; /* save CPU id */
@@ -434,8 +433,8 @@ show_cpuinfo (struct seq_file *m, void *v)
434
433
show_cache_info (m );
435
434
436
435
seq_printf (m , "bogomips\t: %lu.%02lu\n" ,
437
- cpuinfo -> loops_per_jiffy / (500000 / HZ ),
438
- ( cpuinfo -> loops_per_jiffy / (5000 / HZ ) ) % 100 );
436
+ loops_per_jiffy / (500000 / HZ ),
437
+ loops_per_jiffy / (5000 / HZ ) % 100 );
439
438
440
439
seq_printf (m , "software id\t: %ld\n\n" ,
441
440
boot_cpu_data .pdc .model .sw_id );
You can’t perform that action at this time.
0 commit comments