[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20081027232415.b96c6e22.akpm@linux-foundation.org>
Date: Mon, 27 Oct 2008 23:24:15 -0700
From: Andrew Morton <akpm@...ux-foundation.org>
To: Mark Brown <broonie@...nsource.wolfsonmicro.com>
Cc: Alessandro Zummo <alessandro.zummo@...ertech.it>,
David Brownell <david-b@...bell.net>,
rtc-linux@...glegroups.com, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/2] rtc: rtc-wm8350: Add support for WM8350 RTC
On Mon, 27 Oct 2008 17:40:01 +0000 Mark Brown <broonie@...nsource.wolfsonmicro.com> wrote:
> This adds support for the RTC provided by the Wolfson Microelectronics
> WM8350.
>
> This driver was originally written by Graeme Gregory and Liam Girdwood,
> though it has been modified since then to update it to current mainline
> coding standards and for API completeness.
>
> Signed-off-by: Mark Brown <broonie@...nsource.wolfsonmicro.com>
> ---
> This revision:
> - Marks remove() with __devexit_p()
> - Fixes grammar in MODULE_DESCRIPTION()
>
> which should address all the feedback from Alessandro.
This version did this:
From: Mark Brown <broonie@...nsource.wolfsonmicro.com>
- Marks remove() with __devexit_p()
- Fixes grammar in MODULE_DESCRIPTION()
which should address all the feedback from Alessandro.
Cc: Alessandro Zummo <a.zummo@...ertech.it>
Cc: David Brownell <david-b@...bell.net>
Cc: Liam Girdwood <linux@...fsonmicro.com>
Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
---
drivers/rtc/rtc-wm8350.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -puN drivers/rtc/rtc-wm8350.c~rtc-rtc-wm8350-add-support-for-wm8350-rtc-update-2 drivers/rtc/rtc-wm8350.c
--- a/drivers/rtc/rtc-wm8350.c~rtc-rtc-wm8350-add-support-for-wm8350-rtc-update-2
+++ a/drivers/rtc/rtc-wm8350.c
@@ -488,7 +488,7 @@ static int __devexit wm8350_rtc_remove(s
static struct platform_driver wm8350_rtc_driver = {
.probe = wm8350_rtc_probe,
- .remove = wm8350_rtc_remove,
+ .remove = __devexit_p(wm8350_rtc_remove),
.suspend = wm8350_rtc_suspend,
.resume = wm8350_rtc_resume,
.driver = {
@@ -509,6 +509,6 @@ static void __exit wm8350_rtc_exit(void)
module_exit(wm8350_rtc_exit);
MODULE_AUTHOR("Mark Brown <broonie@...nsource.wolfsonmicro.com>");
-MODULE_DESCRIPTION("RTC driver WM8350");
+MODULE_DESCRIPTION("RTC driver for the WM8350");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:wm8350-rtc");
_
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists