On embedded hardware it's normal to not have a PCI device for the PCI
bridge that the wifi card is attached to. pdev->bus->self will be
NULL in that case. In that case, simply return without emitting an
useless kernel stack trace.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
                 * Both upstream and downstream PCIe components should
                 * have the same ASPM settings.
                 */
-               if (WARN_ON(!parent))
+               if (!parent)
                        return;
 
                pos = pci_pcie_cap(parent);
                return;
        }
 
-       if (WARN_ON(!parent))
+       if (!parent)
                return;
 
        pos = pci_pcie_cap(parent);