On 27/07/15 23:38, Hartmut Knaack wrote: > Pass up the real error code returned by platform_get_irq_byname(). > > Signed-off-by: Hartmut Knaack <knaack.h@xxxxxx> > Acked-by: Antoine Tenart <antoine.tenart@xxxxxxxxxxxxxxxxxx> Applied to the togreg branch of iio.git. Initially pushed out as testing for the autobuilders to play with it. Jonathan > --- > drivers/iio/adc/berlin2-adc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/iio/adc/berlin2-adc.c b/drivers/iio/adc/berlin2-adc.c > index 26fa6e6cb624..b31bcf4c7c90 100644 > --- a/drivers/iio/adc/berlin2-adc.c > +++ b/drivers/iio/adc/berlin2-adc.c > @@ -301,11 +301,11 @@ static int berlin2_adc_probe(struct platform_device *pdev) > > irq = platform_get_irq_byname(pdev, "adc"); > if (irq < 0) > - return -ENODEV; > + return irq; > > tsen_irq = platform_get_irq_byname(pdev, "tsen"); > if (tsen_irq < 0) > - return -ENODEV; > + return tsen_irq; > > ret = devm_request_irq(&pdev->dev, irq, berlin2_adc_irq, 0, > pdev->dev.driver->name, indio_dev); > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html