forked from luck/tmp_suning_uos_patched
[PATCH] ipmi: fix return codes in failure case
These returns should be negative, like the others in this function. Signed-off-by: Dave Jones <davej@redhat.com> Acked-by: Corey Minyard <minyard@acm.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
c4ec7b0de4
commit
1cd441f998
@ -1789,7 +1789,7 @@ static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
|
||||
|
||||
info = kzalloc(sizeof(*info), GFP_KERNEL);
|
||||
if (!info)
|
||||
return ENOMEM;
|
||||
return -ENOMEM;
|
||||
|
||||
info->addr_source = "PCI";
|
||||
|
||||
@ -1810,7 +1810,7 @@ static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
|
||||
kfree(info);
|
||||
printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n",
|
||||
pci_name(pdev), class_type);
|
||||
return ENOMEM;
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
rv = pci_enable_device(pdev);
|
||||
|
Loading…
Reference in New Issue
Block a user