Re: [rtc-linux] [PATCH] drivers/rtc/rtc-jz4740.c: fix error check v2

From: Wan ZongShun
Date: Thu Mar 31 2011 - 10:59:39 EST


2011/3/31 Nicolas Kaiser <nikai@xxxxxxxxx>:
> Checking 'rtc->irq < 0' doesn't work because 'rtc->irq' is unsigned.
>
> v2: return error code from platform_get_irq() instead of -ENOENT.
>
> Signed-off-by: Nicolas Kaiser <nikai@xxxxxxxxx>
> ---
> Âdrivers/rtc/rtc-jz4740.c | Â Â6 +++---
> Â1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/rtc/rtc-jz4740.c b/drivers/rtc/rtc-jz4740.c
> index b647363..efd9691 100644
> --- a/drivers/rtc/rtc-jz4740.c
> +++ b/drivers/rtc/rtc-jz4740.c
> @@ -220,12 +220,12 @@ static int __devinit jz4740_rtc_probe(struct platform_device *pdev)
> Â Â Â Âif (!rtc)
> Â Â Â Â Â Â Â Âreturn -ENOMEM;
>
> - Â Â Â rtc->irq = platform_get_irq(pdev, 0);
> - Â Â Â if (rtc->irq < 0) {
> - Â Â Â Â Â Â Â ret = -ENOENT;
> + Â Â Â ret = platform_get_irq(pdev, 0);
> + Â Â Â if (ret < 0) {
> Â Â Â Â Â Â Â Âdev_err(&pdev->dev, "Failed to get platform irq\n");
> Â Â Â Â Â Â Â Âgoto err_free;
> Â Â Â Â}
> + Â Â Â rtc->irq = ret;
>

This patch looks good to me.

Acked-by: Wan ZongShun <mcuos.com@xxxxxxxxx>

> Â Â Â Ârtc->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> Â Â Â Âif (!rtc->mem) {
> --
> 1.7.3.4
>
> --
> You received this message because you are subscribed to "rtc-linux".
> Membership options at http://groups.google.com/group/rtc-linux .
> Please read http://groups.google.com/group/rtc-linux/web/checklist
> before submitting a driver.



--
*linux-arm-kernel mailing list
mail addr:linux-arm-kernel@xxxxxxxxxxxxxxxxxxx
you can subscribe by:
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

* linux-arm-NUC900 mailing list
mail addr:NUC900@xxxxxxxxxxxxxxxx
main web: https://groups.google.com/group/NUC900
you can subscribe it by sending me mail:
mcuos.com@xxxxxxxxx
--
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/