Skip to content

Commit

Permalink
Merge remote-tracking branch 'spi/topic/xlp' into spi-next
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Brown committed Sep 4, 2017
2 parents 2dcfd28 + 9a6b947 commit ecb478b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/spi/spi-xlp.c
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ static int xlp_spi_probe(struct platform_device *pdev)

irq = platform_get_irq(pdev, 0);
if (irq < 0) {
dev_err(&pdev->dev, "no IRQ resource found\n");
return -EINVAL;
dev_err(&pdev->dev, "no IRQ resource found: %d\n", irq);
return irq;
}
err = devm_request_irq(&pdev->dev, irq, xlp_spi_interrupt, 0,
pdev->name, xspi);
Expand Down

0 comments on commit ecb478b

Please sign in to comment.