usnic: correctly check failed allocation
authorInsu Yun <[email protected]>
Thu, 15 Oct 2015 21:15:15 +0000 (21:15 +0000)
committerDoug Ledford <[email protected]>
Wed, 21 Oct 2015 20:41:19 +0000 (16:41 -0400)
Since ib_alloc_device returns allocated memory address, not error,
it should be checked as IS_NULL, not IS_ERR_OR_NULL.

Signed-off-by: Insu Yun <[email protected]>
Reviewed-by: Dave Goodell <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
drivers/infiniband/hw/usnic/usnic_ib_main.c

index 0c15bd885035ee5fe5110e1317cafe09e762fe07..565c881a44ba069f69f64da6b1a215fdc3bf7f19 100644 (file)
@@ -343,16 +343,15 @@ static void *usnic_ib_device_add(struct pci_dev *dev)
        netdev = pci_get_drvdata(dev);
 
        us_ibdev = (struct usnic_ib_dev *)ib_alloc_device(sizeof(*us_ibdev));
-       if (IS_ERR_OR_NULL(us_ibdev)) {
+       if (!us_ibdev) {
                usnic_err("Device %s context alloc failed\n",
                                netdev_name(pci_get_drvdata(dev)));
-               return ERR_PTR(us_ibdev ? PTR_ERR(us_ibdev) : -EFAULT);
+               return ERR_PTR(-EFAULT);
        }
 
        us_ibdev->ufdev = usnic_fwd_dev_alloc(dev);
-       if (IS_ERR_OR_NULL(us_ibdev->ufdev)) {
-               usnic_err("Failed to alloc ufdev for %s with err %ld\n",
-                               pci_name(dev), PTR_ERR(us_ibdev->ufdev));
+       if (!us_ibdev->ufdev) {
+               usnic_err("Failed to alloc ufdev for %s\n", pci_name(dev));
                goto err_dealloc;
        }