From: Liam Howlett Date: Thu, 14 Apr 2022 06:07:12 +0000 (-0700) Subject: mips: rename mt_init to mips_mt_init X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f8ba2e49a9dfb62fe7ba79539ee9e6c3fff01018;p=users%2Fjedix%2Flinux-maple.git mips: rename mt_init to mips_mt_init Move mt_init out of the way for the maple tree. Use mips_mt prefix to match the rest of the functions in the file. Link: https://lkml.kernel.org/r/20220404143501.2016403-7-Liam.Howlett@oracle.com Signed-off-by: Liam R. Howlett Signed-off-by: Andrew Morton --- diff --git a/arch/mips/kernel/mips-mt.c b/arch/mips/kernel/mips-mt.c index d5f7362e8c245..dc023a9798035 100644 --- a/arch/mips/kernel/mips-mt.c +++ b/arch/mips/kernel/mips-mt.c @@ -230,7 +230,7 @@ void mips_mt_set_cpuoptions(void) struct class *mt_class; -static int __init mt_init(void) +static int __init mips_mt_init(void) { struct class *mtc; @@ -243,4 +243,4 @@ static int __init mt_init(void) return 0; } -subsys_initcall(mt_init); +subsys_initcall(mips_mt_init);