mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
bcm63xx_enet: Use platform_get_irq() to get the interrupt
platform_get_resource(pdev, IORESOURCE_IRQ, ..) relies on static allocation of IRQ resources in DT core code, this causes an issue when using hierarchical interrupt domains using "interrupts" property in the node as this bypassed the hierarchical setup and messed up the irq chaining. In preparation for removal of static setup of IRQ resource from DT core code use platform_get_irq(). Signed-off-by: Meng Tang <tangmeng@uniontech.com> Link: https://lore.kernel.org/r/20220303100815.25605-1-tangmeng@uniontech.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
61fd7ac215
commit
43ff0d76f2
1 changed files with 8 additions and 8 deletions
|
@ -1716,17 +1716,17 @@ static int bcm_enet_probe(struct platform_device *pdev)
|
|||
struct bcm_enet_priv *priv;
|
||||
struct net_device *dev;
|
||||
struct bcm63xx_enet_platform_data *pd;
|
||||
struct resource *res_irq, *res_irq_rx, *res_irq_tx;
|
||||
int irq, irq_rx, irq_tx;
|
||||
struct mii_bus *bus;
|
||||
int i, ret;
|
||||
|
||||
if (!bcm_enet_shared_base[0])
|
||||
return -EPROBE_DEFER;
|
||||
|
||||
res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
|
||||
res_irq_rx = platform_get_resource(pdev, IORESOURCE_IRQ, 1);
|
||||
res_irq_tx = platform_get_resource(pdev, IORESOURCE_IRQ, 2);
|
||||
if (!res_irq || !res_irq_rx || !res_irq_tx)
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
irq_rx = platform_get_irq(pdev, 1);
|
||||
irq_tx = platform_get_irq(pdev, 2);
|
||||
if (irq < 0 || irq_rx < 0 || irq_tx < 0)
|
||||
return -ENODEV;
|
||||
|
||||
dev = alloc_etherdev(sizeof(*priv));
|
||||
|
@ -1748,9 +1748,9 @@ static int bcm_enet_probe(struct platform_device *pdev)
|
|||
goto out;
|
||||
}
|
||||
|
||||
dev->irq = priv->irq = res_irq->start;
|
||||
priv->irq_rx = res_irq_rx->start;
|
||||
priv->irq_tx = res_irq_tx->start;
|
||||
dev->irq = priv->irq = irq;
|
||||
priv->irq_rx = irq_rx;
|
||||
priv->irq_tx = irq_tx;
|
||||
|
||||
priv->mac_clk = devm_clk_get(&pdev->dev, "enet");
|
||||
if (IS_ERR(priv->mac_clk)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue