Commit b47d2ec5 authored by Thomas 'Dent' Mirlacher's avatar Thomas 'Dent' Mirlacher Committed by Linus Torvalds

[PATCH] redundant declarations (#2_15)

 this patch fixes redundant declarations in 2.5.24
parent 9bc95760
......@@ -15,9 +15,6 @@ static int disable_x86_fxsr __initdata = 0;
struct cpu_dev * cpu_devs[X86_VENDOR_NUM] = {};
static struct cpu_dev default_cpu;
static struct cpu_dev * this_cpu = &default_cpu;
extern void mcheck_init(struct cpuinfo_x86 *c);
static void default_init(struct cpuinfo_x86 * c)
......@@ -36,6 +33,7 @@ static void default_init(struct cpuinfo_x86 * c)
static struct cpu_dev default_cpu = {
c_init: default_init,
};
static struct cpu_dev * this_cpu = &default_cpu;
static int __init cachesize_setup(char *str)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment