On Thursday 06 November 2008, Mark Jackson wrote:
> v6 (!!) of this patch with even more code tidying as per previous comments.
> Also only a single tx/rx buffer is used.
> Now uses spi_write_then_read()
> Comments changed to include extra chips in the family
>
> This patch adds support for the Dallas DS1390/93/94 SPI RTC chip.
>
> Signed-off-by: Mark Jackson <[EMAIL PROTECTED]>
Acked-by: David Brownell <[EMAIL PROTECTED]>
Although I wouldn't bother using the "wday" field at all.
Linux doesn't use that field, so trying to maintain it isn't
useful ... though it probably doesn't hurt, assuming the
chip behaves OK when invalid data is written there.
Also, in probe():
> + printk(KERN_INFO "DS1390 SPI RTC driver\n");
I dislike those banners in general. Best to remove that,
since the RTC framework announces the registration. Or
at least, dev_info().
> + spi->mode = SPI_MODE_3;
> + spi->bits_per_word = 8;
> + spi_setup(spi);
Unlikely to fail ... but
res = spi_setup(spi);
if (res < 0) {
/* or do it before the kzalloc, no kfree
* ... likewise with reading the register
* as an "is it there" check: do it earlier
* and get a similar minor codeshrink.
*/
kfree(chip);
return res;
}
> +
> + dev_set_drvdata(&spi->dev, chip);
> +
> + res = ds1390_get_reg(&spi->dev, DS1390_REG_SECONDS, &tmp);
> + if (res) {
> + dev_err(&spi->dev, "DS1390: unable to read device\n");
> + kfree(chip);
> + return res;
> + }
> +
> + rtc = rtc_device_register("ds1390",
> + &spi->dev, &ds1390_rtc_ops, THIS_MODULE);
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
spi-devel-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/spi-devel-general