misc: pci_endpoint_test: fix return value of error branch
[linux-2.6-microblaze.git] / drivers / misc / pci_endpoint_test.c
index ea9c2c0..eff481c 100644 (file)
@@ -811,8 +811,10 @@ static int pci_endpoint_test_probe(struct pci_dev *pdev,
 
        pci_set_master(pdev);
 
-       if (!pci_endpoint_test_alloc_irq_vectors(test, irq_type))
+       if (!pci_endpoint_test_alloc_irq_vectors(test, irq_type)) {
+               err = -EINVAL;
                goto err_disable_irq;
+       }
 
        for (bar = 0; bar < PCI_STD_NUM_BARS; bar++) {
                if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
@@ -849,8 +851,10 @@ static int pci_endpoint_test_probe(struct pci_dev *pdev,
                goto err_ida_remove;
        }
 
-       if (!pci_endpoint_test_request_irq(test))
+       if (!pci_endpoint_test_request_irq(test)) {
+               err = -EINVAL;
                goto err_kfree_test_name;
+       }
 
        misc_device = &test->miscdev;
        misc_device->minor = MISC_DYNAMIC_MINOR;