提交 60a1c4d4 编写于 作者: T Thierry Reding 提交者: Anton Vorontsov

power/reset: Remove newly introduced __dev* annotations

__devinit, __devexit and __devexit_p have recently been removed and
should no longer be used.
Signed-off-by: NThierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: NJason Cooper <jason@lakedaemon.net>
Acked-by: NAndrew Lunn <andrew@lunn.ch>
Signed-off-by: NAnton Vorontsov <anton@enomsg.org>
上级 f96b3074
......@@ -22,7 +22,7 @@ static void restart_poweroff_do_poweroff(void)
arm_pm_restart('h', NULL);
}
static int __devinit restart_poweroff_probe(struct platform_device *pdev)
static int restart_poweroff_probe(struct platform_device *pdev)
{
/* If a pm_power_off function has already been added, leave it alone */
if (pm_power_off != NULL) {
......@@ -35,7 +35,7 @@ static int __devinit restart_poweroff_probe(struct platform_device *pdev)
return 0;
}
static int __devexit restart_poweroff_remove(struct platform_device *pdev)
static int restart_poweroff_remove(struct platform_device *pdev)
{
if (pm_power_off == &restart_poweroff_do_poweroff)
pm_power_off = NULL;
......@@ -50,7 +50,7 @@ static const struct of_device_id of_restart_poweroff_match[] = {
static struct platform_driver restart_poweroff_driver = {
.probe = restart_poweroff_probe,
.remove = __devexit_p(restart_poweroff_remove),
.remove = restart_poweroff_remove,
.driver = {
.name = "poweroff-restart",
.owner = THIS_MODULE,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册