pcie-brcmstb.c (669cbc708122fc7a02282058a09f096200cee090) | pcie-brcmstb.c (b64aa11eb2ddb0600361178286d7b7ed5a069fd8) |
---|---|
1// SPDX-License-Identifier: GPL-2.0+ 2/* Copyright (C) 2009 - 2019 Broadcom */ 3 4#include <linux/bitfield.h> 5#include <linux/bitops.h> 6#include <linux/clk.h> 7#include <linux/compiler.h> 8#include <linux/delay.h> --- 977 unchanged lines hidden (view full) --- 986 if (ret) { 987 dev_err(pcie->dev, "probe of internal MSI failed"); 988 goto fail; 989 } 990 } 991 992 bridge->ops = &brcm_pcie_ops; 993 bridge->sysdata = pcie; | 1// SPDX-License-Identifier: GPL-2.0+ 2/* Copyright (C) 2009 - 2019 Broadcom */ 3 4#include <linux/bitfield.h> 5#include <linux/bitops.h> 6#include <linux/clk.h> 7#include <linux/compiler.h> 8#include <linux/delay.h> --- 977 unchanged lines hidden (view full) --- 986 if (ret) { 987 dev_err(pcie->dev, "probe of internal MSI failed"); 988 goto fail; 989 } 990 } 991 992 bridge->ops = &brcm_pcie_ops; 993 bridge->sysdata = pcie; |
994 bridge->map_irq = of_irq_parse_and_map_pci; 995 bridge->swizzle_irq = pci_common_swizzle; | |
996 997 platform_set_drvdata(pdev, pcie); 998 999 return pci_host_probe(bridge); 1000fail: 1001 __brcm_pcie_remove(pcie); 1002 return ret; 1003} --- 20 unchanged lines hidden --- | 994 995 platform_set_drvdata(pdev, pcie); 996 997 return pci_host_probe(bridge); 998fail: 999 __brcm_pcie_remove(pcie); 1000 return ret; 1001} --- 20 unchanged lines hidden --- |