On Mon, 31 Mar 2014 11:36:09 -0600 Loc Ho <[email protected]> wrote:

> This patch adds support for the APM X-Gene SoC RTC driver.
> 
> ...
>
> +static int xgene_rtc_probe(struct platform_device *pdev)
> +{
> +     struct xgene_rtc_dev *pdata;
> +     struct resource *res;
> +     int ret;
> +     int irq;
> +
> +     pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
> +     if (!pdata)
> +             return -ENOMEM;
> +     platform_set_drvdata(pdev, pdata);
> +     pdata->dev = &pdev->dev;
> +
> +     res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> +     pdata->csr_base = devm_ioremap_resource(&pdev->dev, res);
> +     if (IS_ERR(pdata->csr_base))
> +             return PTR_ERR(pdata->csr_base);
> +
> +     irq = platform_get_irq(pdev, 0);
> +     if (irq < 0) {
> +             dev_err(&pdev->dev, "No IRQ resource\n");
> +             return irq;
> +     }
> +     ret = devm_request_irq(&pdev->dev, irq, xgene_rtc_interrupt, 0,
> +                            dev_name(&pdev->dev), pdata);
> +     if (ret) {
> +             dev_err(&pdev->dev, "Could not request IRQ\n");
> +             return ret;
> +     }
> +
> +     pdata->clk = devm_clk_get(&pdev->dev, NULL);
> +     if (IS_ERR(pdata->clk)) {
> +             dev_err(&pdev->dev, "Couldn't get the clock for RTC\n");
> +             return -ENODEV;
> +     }
> +     clk_prepare_enable(pdata->clk);
> +
> +     /* Turn on the clock and the crystal */
> +     writel(RTC_CCR_EN, pdata->csr_base + RTC_CCR);
> +
> +     device_init_wakeup(&pdev->dev, 1);

Forgot to check the returns values from clk_prepare_enable() and
device_init_wakeup()?

> +     pdata->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
> +                                      &xgene_rtc_ops, THIS_MODULE);
> +     if (IS_ERR(pdata->rtc)) {
> +             clk_disable_unprepare(pdata->clk);
> +             return PTR_ERR(pdata->rtc);
> +     }
> +
> +     /* HW does not support update faster than 1 seconds */
> +     pdata->rtc->uie_unsupported = 1;
> +
> +     return 0;
> +}

Otherwise it looks OK to me - I queued all three patches, thanks.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to