Re: [rtc-linux] [PATCH] tile: add an RTC driver for the Tilerahypervisor

From: Andrew Morton
Date: Wed May 11 2011 - 18:45:04 EST


On Wed, 4 May 2011 15:52:21 -0400
Chris Metcalf <cmetcalf@xxxxxxxxxx> wrote:

> This is a simple RTC driver that lets Tilera hardware boot up and
> set the clock correctly.
>
>
> ...
>
> +static int __init tile_rtc_driver_init(void)
> +{
> + int err;
> +
> + err = platform_driver_register(&tile_rtc_platform_driver);
> + if (err)
> + return err;
> +
> + tile_rtc_platform_device = platform_device_alloc("rtc-tile", 0);
> + if (tile_rtc_platform_device == NULL) {
> + platform_driver_unregister(&tile_rtc_platform_driver);
> + return -ENOMEM;
> + }
> +
> + err = platform_device_add(tile_rtc_platform_device);
> + if (err) {
> + platform_device_put(tile_rtc_platform_device);

should we have a platform_driver_unregister() here?

> + return err;
> + }
> +
> + return 0;
> +}
>
> ...
>
--
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/