Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8eba0eef authored by Alexander Aring's avatar Alexander Aring Committed by David S. Miller
Browse files

at86rf230: remove irq_type in request_irq



We don't need to set these values at request_irq. The interrupt line is
already configured to same value like irq_get_trigger_type returned.

Signed-off-by: default avatarAlexander Aring <alex.aring@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0dbfc8fd
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1190,8 +1190,7 @@ static int at86rf230_probe(struct spi_device *spi)
	if (rc)
		goto err_hw_init;

	rc = request_irq(spi->irq, irq_handler,
			 IRQF_SHARED | irq_type,
	rc = request_irq(spi->irq, irq_handler, IRQF_SHARED,
			 dev_name(&spi->dev), lp);
	if (rc)
		goto err_hw_init;