Skip to content

Commit 2048823

Browse files
Punnaiah Choudary Kalluridavem330
authored andcommitted
net: macb: Fix multi queue support for xilinx ZynqMP
ZynqMP soc has single interrupt for all the queue events. So, passing the IRQF_SHARED flag for interrupt registration call. Signed-off-by: Punnaiah Choudary Kalluri <[email protected]> Signed-off-by: Michal Simek <[email protected]> Acked-by: Nicolas Ferre <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 8a013a9 commit 2048823

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/ethernet/cadence

1 file changed

+1
-1
lines changed

drivers/net/ethernet/cadence/macb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2339,7 +2339,7 @@ static int macb_probe(struct platform_device *pdev)
23392339
*/
23402340
queue->irq = platform_get_irq(pdev, q);
23412341
err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
2342-
0, dev->name, queue);
2342+
IRQF_SHARED, dev->name, queue);
23432343
if (err) {
23442344
dev_err(&pdev->dev,
23452345
"Unable to request IRQ %d (error %d)\n",

0 commit comments

Comments
 (0)