Commit ac36856f authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Wim Van Sebroeck

watchdog: asm9260: remove __init and __exit annotations

The probe and release functions in this driver are marked
as __init and __exit, but this is wrong as indicated by this
Kbuild error message:

WARNING: vmlinux.o(.data+0x1d2308): Section mismatch in reference from the variable asm9260_wdt_driver to the function .init.text:asm9260_wdt_probe()

This removes the annotations, to make the sysfs unbind attribute
and deferred probing work.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Fixes: aae03dc9 ("watchdog: add Alphascale asm9260-wdt driver")
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 0254e953
...@@ -198,7 +198,7 @@ static struct watchdog_ops asm9260_wdt_ops = { ...@@ -198,7 +198,7 @@ static struct watchdog_ops asm9260_wdt_ops = {
.set_timeout = asm9260_wdt_settimeout, .set_timeout = asm9260_wdt_settimeout,
}; };
static int __init asm9260_wdt_get_dt_clks(struct asm9260_wdt_priv *priv) static int asm9260_wdt_get_dt_clks(struct asm9260_wdt_priv *priv)
{ {
int err; int err;
unsigned long clk; unsigned long clk;
...@@ -250,7 +250,7 @@ static int __init asm9260_wdt_get_dt_clks(struct asm9260_wdt_priv *priv) ...@@ -250,7 +250,7 @@ static int __init asm9260_wdt_get_dt_clks(struct asm9260_wdt_priv *priv)
return 0; return 0;
} }
static void __init asm9260_wdt_get_dt_mode(struct asm9260_wdt_priv *priv) static void asm9260_wdt_get_dt_mode(struct asm9260_wdt_priv *priv)
{ {
const char *tmp; const char *tmp;
int ret; int ret;
...@@ -274,7 +274,7 @@ static void __init asm9260_wdt_get_dt_mode(struct asm9260_wdt_priv *priv) ...@@ -274,7 +274,7 @@ static void __init asm9260_wdt_get_dt_mode(struct asm9260_wdt_priv *priv)
tmp); tmp);
} }
static int __init asm9260_wdt_probe(struct platform_device *pdev) static int asm9260_wdt_probe(struct platform_device *pdev)
{ {
struct asm9260_wdt_priv *priv; struct asm9260_wdt_priv *priv;
struct watchdog_device *wdd; struct watchdog_device *wdd;
...@@ -364,7 +364,7 @@ static void asm9260_wdt_shutdown(struct platform_device *pdev) ...@@ -364,7 +364,7 @@ static void asm9260_wdt_shutdown(struct platform_device *pdev)
asm9260_wdt_disable(&priv->wdd); asm9260_wdt_disable(&priv->wdd);
} }
static int __exit asm9260_wdt_remove(struct platform_device *pdev) static int asm9260_wdt_remove(struct platform_device *pdev)
{ {
struct asm9260_wdt_priv *priv = platform_get_drvdata(pdev); struct asm9260_wdt_priv *priv = platform_get_drvdata(pdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment