diff options
Diffstat (limited to 'includes/parisc')
| -rw-r--r-- | includes/parisc/processor-platform.h | 15 | 
1 files changed, 12 insertions, 3 deletions
| diff --git a/includes/parisc/processor-platform.h b/includes/parisc/processor-platform.h index bfe8c45c..c55c69ec 100644 --- a/includes/parisc/processor-platform.h +++ b/includes/parisc/processor-platform.h @@ -19,15 +19,24 @@  #ifndef __PROCESSOR_PLATFORM_H__  #define __PROCESSOR_PLATFORM_H__ +#include "cpu_util.h" +  struct _Processor { +    gint id; +    gfloat cpu_mhz; /* for devices.c, identical to cpukhz_max/1000 */ +    cpu_topology_data *cputopo; +    cpufreq_data *cpufreq; +      gchar *model_name;      gchar *vendor_id;      gchar *flags; -    gfloat bogomips, cpu_mhz; - +    gfloat bogomips;      gchar *has_fpu; -          gchar *strmodel; + +    gchar *cpu_family; +    gchar *icache_str, *dcache_str; +    gchar *hversion, *sversion;  };  #endif	/* __PROCESSOR_PLATFORM_H__ */ | 
