Comments
Patch
@@ -237,7 +237,7 @@ static struct bin_attribute tx4939_rtc_nvram_attr = {
.write = tx4939_rtc_nvram_write,
};
-static int __init tx4939_rtc_probe(struct platform_device *pdev)
+static int tx4939_rtc_probe(struct platform_device *pdev)
{
struct rtc_device *rtc;
struct tx4939rtc_plat_data *pdata;
@@ -279,7 +279,7 @@ static int __init tx4939_rtc_probe(struct platform_device *pdev)
return ret;
}
-static int __exit tx4939_rtc_remove(struct platform_device *pdev)
+static int tx4939_rtc_remove(struct platform_device *pdev)
{
struct tx4939rtc_plat_data *pdata = platform_get_drvdata(pdev);
@@ -292,7 +292,7 @@ static int __exit tx4939_rtc_remove(struct platform_device *pdev)
}
static struct platform_driver tx4939_rtc_driver = {
- .remove = __exit_p(tx4939_rtc_remove),
+ .remove = tx4939_rtc_remove,
.driver = {
.name = "tx4939rtc",
.owner = THIS_MODULE,
__init/__exit annotations for probe()/remove() are supposed to be __devinit/__devexit, because __init/__exit for probe()/remove() are not correct. However, __devinit/__devexit are not used, because CONFIG_HOTPLUG was removed. Thus, these annotations should be removed. Signed-off-by: Jingoo Han <jg1.han@samsung.com> --- drivers/rtc/rtc-tx4939.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)