diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-09-10 09:27:21 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 19:06:35 +0200 |
commit | 672289e9faa56acd4e39ad866ea258b7be7c99a6 (patch) | |
tree | b7c3de57206573d97177ca9e488b175827c633e9 /arch/i386 | |
parent | [PATCH] fs/cramfs/uncompress.c should #include <linux/cramfs_fs.h> (diff) | |
download | linux-672289e9faa56acd4e39ad866ea258b7be7c99a6.tar.xz linux-672289e9faa56acd4e39ad866ea258b7be7c99a6.zip |
[PATCH] i386/x86_64: make get_cpu_vendor() static
get_cpu_vendor() no longer has any users in other files.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/cpu/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/cpu/common.c b/arch/i386/kernel/cpu/common.c index 46ce9b248f55..9ad43be9a01f 100644 --- a/arch/i386/kernel/cpu/common.c +++ b/arch/i386/kernel/cpu/common.c @@ -151,7 +151,7 @@ static char __devinit *table_lookup_model(struct cpuinfo_x86 *c) } -void __devinit get_cpu_vendor(struct cpuinfo_x86 *c, int early) +static void __devinit get_cpu_vendor(struct cpuinfo_x86 *c, int early) { char *v = c->x86_vendor_id; int i; |