mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
[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
1 changed files with 2 additions and 2 deletions
|
@ -1789,7 +1789,7 @@ static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
|
||||||
|
|
||||||
info = kzalloc(sizeof(*info), GFP_KERNEL);
|
info = kzalloc(sizeof(*info), GFP_KERNEL);
|
||||||
if (!info)
|
if (!info)
|
||||||
return ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
info->addr_source = "PCI";
|
info->addr_source = "PCI";
|
||||||
|
|
||||||
|
@ -1810,7 +1810,7 @@ static int __devinit ipmi_pci_probe(struct pci_dev *pdev,
|
||||||
kfree(info);
|
kfree(info);
|
||||||
printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n",
|
printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n",
|
||||||
pci_name(pdev), class_type);
|
pci_name(pdev), class_type);
|
||||||
return ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
rv = pci_enable_device(pdev);
|
rv = pci_enable_device(pdev);
|
||||||
|
|
Loading…
Add table
Reference in a new issue