aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2019-09-10 05:59:07 +0200
committerPaul Burton <paul.burton@mips.com>2019-10-02 14:16:32 -0700
commit25b69a889b638b0b7e51e2c4fe717a66bec0e566 (patch)
tree31b9dd5b19032fe7d9564e6342ac96970d2b6b9e /arch
parentMIPS: init: Prevent adding memory before PHYS_OFFSET (diff)
downloadlinux-dev-25b69a889b638b0b7e51e2c4fe717a66bec0e566.tar.xz
linux-dev-25b69a889b638b0b7e51e2c4fe717a66bec0e566.zip
mips: Loongson: Fix the link time qualifier of 'serial_exit()'
'exit' functions should be marked as __exit, not __init. Fixes: 85cc028817ef ("mips: make loongsoon serial driver explicitly modular") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Paul Burton <paul.burton@mips.com> Cc: chenhc@lemote.com Cc: ralf@linux-mips.org Cc: jhogan@kernel.org Cc: linux-mips@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: kernel-janitors@vger.kernel.org
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/loongson64/common/serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/loongson64/common/serial.c b/arch/mips/loongson64/common/serial.c
index ffefc1cb2612..98c3a7feb10f 100644
--- a/arch/mips/loongson64/common/serial.c
+++ b/arch/mips/loongson64/common/serial.c
@@ -110,7 +110,7 @@ static int __init serial_init(void)
}
module_init(serial_init);
-static void __init serial_exit(void)
+static void __exit serial_exit(void)
{
platform_device_unregister(&uart8250_device);
}