提交 68209407 编写于 作者: L Luiz Fernando Capitulino 提交者: Linus Torvalds

[PATCH] x86_64: Sparse warnings fix.

 Fixes the following sparse warnings:

arch/x86_64/kernel/mce_amd.c:321:29: warning: Using plain integer as NULL pointer
arch/x86_64/kernel/mce_amd.c:410:41: warning: Using plain integer as NULL pointer
Signed-off-by: NLuiz Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: NAndi Kleen <ak@suse.de>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 915f34e2
...@@ -320,7 +320,7 @@ static struct kobj_type threshold_ktype = { ...@@ -320,7 +320,7 @@ static struct kobj_type threshold_ktype = {
static __cpuinit int threshold_create_bank(unsigned int cpu, int bank) static __cpuinit int threshold_create_bank(unsigned int cpu, int bank)
{ {
int err = 0; int err = 0;
struct threshold_bank *b = 0; struct threshold_bank *b = NULL;
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
if (cpu_core_id[cpu] && shared_bank[bank]) { /* symlink */ if (cpu_core_id[cpu] && shared_bank[bank]) { /* symlink */
...@@ -409,7 +409,7 @@ static __cpuinit void threshold_remove_bank(unsigned int cpu, int bank) ...@@ -409,7 +409,7 @@ static __cpuinit void threshold_remove_bank(unsigned int cpu, int bank)
if (shared_bank[bank] && atomic_read(&b->kobj.kref.refcount) > 2) { if (shared_bank[bank] && atomic_read(&b->kobj.kref.refcount) > 2) {
sprintf(name, "bank%i", bank); sprintf(name, "bank%i", bank);
sysfs_remove_link(&per_cpu(device_threshold, cpu).kobj, name); sysfs_remove_link(&per_cpu(device_threshold, cpu).kobj, name);
per_cpu(threshold_banks, cpu)[bank] = 0; per_cpu(threshold_banks, cpu)[bank] = NULL;
} else { } else {
kobject_unregister(&b->kobj); kobject_unregister(&b->kobj);
kfree(per_cpu(threshold_banks, cpu)[bank]); kfree(per_cpu(threshold_banks, cpu)[bank]);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册