File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ struct cpuinfo_parisc {
9797 unsigned long cpu_loc ; /* CPU location from PAT firmware */
9898 unsigned int state ;
9999 struct parisc_device * dev ;
100- unsigned long loops_per_jiffy ;
101100};
102101
103102extern 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)
163163 if (cpuid )
164164 memset (p , 0 , sizeof (struct cpuinfo_parisc ));
165165
166- p -> loops_per_jiffy = loops_per_jiffy ;
167166 p -> dev = dev ; /* Save IODC data in case we need it */
168167 p -> hpa = dev -> hpa .start ; /* save CPU hpa */
169168 p -> cpuid = cpuid ; /* save CPU id */
@@ -434,8 +433,8 @@ show_cpuinfo (struct seq_file *m, void *v)
434433 show_cache_info (m );
435434
436435 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 );
439438
440439 seq_printf (m , "software id\t: %ld\n\n" ,
441440 boot_cpu_data .pdc .model .sw_id );
You can’t perform that action at this time.
0 commit comments