Commit a0adbc7a authored by Andrey Shvetsov's avatar Andrey Shvetsov Committed by Greg Kroah-Hartman

staging: most: hdm-dim2: fix dim2-ip interrupt names

This patch fixes the DIM2 IP interrupt names.
Signed-off-by: default avatarAndrey Shvetsov <andrey.shvetsov@k2l.de>
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3512ede2
...@@ -733,14 +733,14 @@ static int dim2_probe(struct platform_device *pdev) ...@@ -733,14 +733,14 @@ static int dim2_probe(struct platform_device *pdev)
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
if (irq < 0) { if (irq < 0) {
dev_err(&pdev->dev, "failed to get irq\n"); dev_err(&pdev->dev, "failed to get ahb0_int irq\n");
return -ENODEV; return -ENODEV;
} }
ret = devm_request_irq(&pdev->dev, irq, dim2_ahb_isr, 0, ret = devm_request_irq(&pdev->dev, irq, dim2_ahb_isr, 0,
"mlb_ahb0", dev); "dim2_ahb0_int", dev);
if (ret) { if (ret) {
dev_err(&pdev->dev, "failed to request IRQ: %d\n", irq); dev_err(&pdev->dev, "failed to request ahb0_int irq %d\n", irq);
return ret; return ret;
} }
init_waitqueue_head(&dev->netinfo_waitq); init_waitqueue_head(&dev->netinfo_waitq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment