Re: [PATCH] leds-cobalt: use resource_size()

From: Florian Fainelli
Date: Wed Nov 25 2009 - 04:42:48 EST


Hi Yoichi,

On Wednesday 25 November 2009 05:33:59 Yoichi Yuasa wrote:
> Signed-off-by: Yoichi Yuasa <yuasa@xxxxxxxxxxxxxx>
> Cc: Florian Fainelli <florian@xxxxxxxxxxx>

Acked-by: Florian Fainelli <florian@xxxxxxxxxxx>

> ---
> drivers/leds/leds-cobalt-qube.c | 2 +-
> drivers/leds/leds-cobalt-raq.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/leds/leds-cobalt-qube.c
> b/drivers/leds/leds-cobalt-qube.c index 8816806..de19753 100644
> --- a/drivers/leds/leds-cobalt-qube.c
> +++ b/drivers/leds/leds-cobalt-qube.c
> @@ -43,7 +43,7 @@ static int __devinit cobalt_qube_led_probe(struct
> platform_device *pdev) if (!res)
> return -EBUSY;
>
> - led_port = ioremap(res->start, res->end - res->start + 1);
> + led_port = ioremap(res->start, resource_size(res));
> if (!led_port)
> return -ENOMEM;
>
> diff --git a/drivers/leds/leds-cobalt-raq.c
> b/drivers/leds/leds-cobalt-raq.c index defc212..438d483 100644
> --- a/drivers/leds/leds-cobalt-raq.c
> +++ b/drivers/leds/leds-cobalt-raq.c
> @@ -84,7 +84,7 @@ static int __devinit cobalt_raq_led_probe(struct
> platform_device *pdev) if (!res)
> return -EBUSY;
>
> - led_port = ioremap(res->start, res->end - res->start + 1);
> + led_port = ioremap(res->start, resource_size(res));
> if (!led_port)
> return -ENOMEM;
>

--
--
WBR, Florian
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/