Skip to content

Commit

Permalink
net: mvmdio: avoid error message for optional IRQ
Browse files Browse the repository at this point in the history
Per the dt-binding the interrupt is optional so use
platform_get_irq_optional() instead of platform_get_irq(). Since
commit 7723f4c ("driver core: platform: Add an error message to
platform_get_irq*()") platform_get_irq() produces an error message

  orion-mdio f1072004.mdio: IRQ index 0 not found

which is perfectly normal if one hasn't specified the optional property
in the device tree.

Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Chris Packham authored and David S. Miller committed Mar 18, 2020
1 parent 028fd76 commit fa2632f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/marvell/mvmdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ static int orion_mdio_probe(struct platform_device *pdev)
}


dev->err_interrupt = platform_get_irq(pdev, 0);
dev->err_interrupt = platform_get_irq_optional(pdev, 0);
if (dev->err_interrupt > 0 &&
resource_size(r) < MVMDIO_ERR_INT_MASK + 4) {
dev_err(&pdev->dev,
Expand Down

0 comments on commit fa2632f

Please sign in to comment.