Re: [rtc-linux] [PATCH] add support for ST M41T94 SPI RTC (patchrev. 2)

From: Alessandro Zummo
Date: Thu May 15 2008 - 06:13:24 EST


On Thu, 15 May 2008 12:53:05 +0300
"Kim B. Heino" <Kim.Heino@xxxxxxxxxxxx> wrote:

>
> +struct m41t94 {
> + struct rtc_device *rtc;
> +};

[...]


> +
> +static int __devinit m41t94_probe(struct spi_device *spi)
> +{
> + struct rtc_device *rtc;
> + struct m41t94 *m41t94;
> + int res;
> +
> + m41t94 = kzalloc(sizeof(struct m41t94), GFP_KERNEL);
> + if (!m41t94)
> + return -ENOMEM;
> + dev_set_drvdata(&spi->dev, m41t94);

[..]

> + rtc = rtc_device_register(m41t94_driver.driver.name,
> + &spi->dev, &m41t94_rtc_ops, THIS_MODULE);
> + if (IS_ERR(rtc)) {
> + kfree(m41t94);
> + return PTR_ERR(rtc);
> + }
> +
> + m41t94->rtc = rtc;
> +
> + return 0;
> +}
>

thanks for having implemented the sugestions.

one more thing. now that the struct m41t94 is
almost empty it makes no sense to keep it.

--

Best regards,

Alessandro Zummo,
Tower Technologies - Torino, Italy

http://www.towertech.it

--
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/