mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
rtc: rtc-tegra: add __init/__exit annotation
When platform_driver_probe() is used, bind/unbind via sysfs is disabled. Thus, __init/__exit annotations can be added to probe()/remove(). Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
5cc2b9c67a
commit
51b38c62aa
1 changed files with 3 additions and 3 deletions
|
@ -309,7 +309,7 @@ static const struct of_device_id tegra_rtc_dt_match[] = {
|
|||
};
|
||||
MODULE_DEVICE_TABLE(of, tegra_rtc_dt_match);
|
||||
|
||||
static int tegra_rtc_probe(struct platform_device *pdev)
|
||||
static int __init tegra_rtc_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct tegra_rtc_info *info;
|
||||
struct resource *res;
|
||||
|
@ -379,7 +379,7 @@ static int tegra_rtc_probe(struct platform_device *pdev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int tegra_rtc_remove(struct platform_device *pdev)
|
||||
static int __exit tegra_rtc_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct tegra_rtc_info *info = platform_get_drvdata(pdev);
|
||||
|
||||
|
@ -439,7 +439,7 @@ static void tegra_rtc_shutdown(struct platform_device *pdev)
|
|||
|
||||
MODULE_ALIAS("platform:tegra_rtc");
|
||||
static struct platform_driver tegra_rtc_driver = {
|
||||
.remove = tegra_rtc_remove,
|
||||
.remove = __exit_p(tegra_rtc_remove),
|
||||
.shutdown = tegra_rtc_shutdown,
|
||||
.driver = {
|
||||
.name = "tegra_rtc",
|
||||
|
|
Loading…
Reference in a new issue