staging:iio:lpc32xx_adc: Use resource_size instead of opencoding it
authorLars-Peter Clausen <lars@metafoo.de>
Thu, 18 Oct 2012 14:43:00 +0000 (15:43 +0100)
committerJonathan Cameron <jic23@kernel.org>
Fri, 19 Oct 2012 15:25:31 +0000 (16:25 +0100)
Fixes the following error from coccicheck:
drivers/staging/iio/adc/lpc32xx_adc.c:153:43-46: ERROR: Missing resource_size with res

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Roland Stigge <stigge@antcom.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/adc/lpc32xx_adc.c

index 7e9bd00..10c5962 100644 (file)
@@ -150,7 +150,7 @@ static int __devinit lpc32xx_adc_probe(struct platform_device *pdev)
 
        info = iio_priv(iodev);
 
-       info->adc_base = ioremap(res->start, res->end - res->start + 1);
+       info->adc_base = ioremap(res->start, resource_size(res));
        if (!info->adc_base) {
                dev_err(&pdev->dev, "failed mapping memory\n");
                retval = -EBUSY;