Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f2362e6f authored by Jaswinder Singh Rajput's avatar Jaswinder Singh Rajput
Browse files

x86: cpu/cpu.h cleanup



Impact: cleanup

 - Fix various style issues

Signed-off-by: default avatarJaswinder Singh Rajput <jaswinderrajput@gmail.com>
parent 7f00a249
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -17,10 +17,10 @@ struct cpu_dev {

	struct		cpu_model_info c_models[4];

	void            (*c_early_init)(struct cpuinfo_x86 *c);
	void		(*c_init)(struct cpuinfo_x86 * c);
	void		(*c_identify)(struct cpuinfo_x86 * c);
	unsigned int	(*c_size_cache)(struct cpuinfo_x86 * c, unsigned int size);
	void            (*c_early_init)(struct cpuinfo_x86 *);
	void		(*c_init)(struct cpuinfo_x86 *);
	void		(*c_identify)(struct cpuinfo_x86 *);
	unsigned int	(*c_size_cache)(struct cpuinfo_x86 *, unsigned int);
	int		c_x86_vendor;
};