scsi: mptfusion: Remove unnecessary parentheses
[sfrench/cifs-2.6.git] / drivers / message / fusion / mptbase.c
index dc1e43a0259927572b1cf8db0aa25a6cf2f37259..ba551d8dfba486f389e941883f217e2788d1c5db 100644 (file)
@@ -335,11 +335,11 @@ static int mpt_remove_dead_ioc_func(void *arg)
        MPT_ADAPTER *ioc = (MPT_ADAPTER *)arg;
        struct pci_dev *pdev;
 
-       if ((ioc == NULL))
+       if (!ioc)
                return -1;
 
        pdev = ioc->pcidev;
-       if ((pdev == NULL))
+       if (!pdev)
                return -1;
 
        pci_stop_and_remove_bus_device_locked(pdev);