x86: cpu/cpu.h cleanup
Impact: cleanup - Fix various style issues Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
This commit is contained in:
@@ -10,17 +10,17 @@ struct cpu_model_info {
|
|||||||
|
|
||||||
/* attempt to consolidate cpu attributes */
|
/* attempt to consolidate cpu attributes */
|
||||||
struct cpu_dev {
|
struct cpu_dev {
|
||||||
const char * c_vendor;
|
const char *c_vendor;
|
||||||
|
|
||||||
/* some have two possibilities for cpuid string */
|
/* some have two possibilities for cpuid string */
|
||||||
const char * c_ident[2];
|
const char *c_ident[2];
|
||||||
|
|
||||||
struct cpu_model_info c_models[4];
|
struct cpu_model_info c_models[4];
|
||||||
|
|
||||||
void (*c_early_init)(struct cpuinfo_x86 *c);
|
void (*c_early_init)(struct cpuinfo_x86 *);
|
||||||
void (*c_init)(struct cpuinfo_x86 * c);
|
void (*c_init)(struct cpuinfo_x86 *);
|
||||||
void (*c_identify)(struct cpuinfo_x86 * c);
|
void (*c_identify)(struct cpuinfo_x86 *);
|
||||||
unsigned int (*c_size_cache)(struct cpuinfo_x86 * c, unsigned int size);
|
unsigned int (*c_size_cache)(struct cpuinfo_x86 *, unsigned int);
|
||||||
int c_x86_vendor;
|
int c_x86_vendor;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user