Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd56b638 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Jean Delvare
Browse files

hwmon: (w83781d) Fix linking when built-in



When w83781d is built-in, the final links fails with the following vague error
message:

`.exit.text' referenced in section `.init.text' of drivers/built-in.o: defined
in discarded section `.exit.text' of drivers/built-in.o

w83781d_isa_unregister() cannot be marked __exit, as it's also called from
sensors_w83781d_init(), which is marked __init.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Cc: Wolfgang Grandegger <wg@grandegger.com>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
parent 57f8f7b6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1968,7 +1968,7 @@ w83781d_isa_register(void)
	return res;
}

static void __exit
static void
w83781d_isa_unregister(void)
{
	if (pdev) {
@@ -2017,7 +2017,7 @@ w83781d_isa_register(void)
	return 0;
}

static void __exit
static void
w83781d_isa_unregister(void)
{
}