Re: [PATCH] MIPS: ralink: mt7621: Fix soc_device introduction

From: Renà van Dorst
Date: Sat Mar 28 2020 - 08:06:35 EST


Hi Thomas,

Thanks for fixing the compile issue for me.
Now I can make a kernel again.

Tested-by: Renà van Dorst <opensource@xxxxxxxxxx>

Greats,

RenÃ

Quoting Thomas Bogendoerfer <tsbogend@xxxxxxxxxxxxxxxx>:

Depending on selected SMP config options soc_device didn't get
initialised at all. With UP config vmlinux didn't link because
of missing soc bus.

Fixes: 71b9b5e0130d ("MIPS: ralink: mt7621: introduce 'soc_device' initialization")
Signed-off-by: Thomas Bogendoerfer <tsbogend@xxxxxxxxxxxxxxxx>
---
arch/mips/ralink/Kconfig | 1 +
arch/mips/ralink/mt7621.c | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig
index 94e9ce994494..35c2ebd8f094 100644
--- a/arch/mips/ralink/Kconfig
+++ b/arch/mips/ralink/Kconfig
@@ -52,6 +52,7 @@ choice
select COMMON_CLK
select CLKSRC_MIPS_GIC
select HAVE_PCI if PCI_MT7621
+ select SOC_BUS
endchoice

choice
diff --git a/arch/mips/ralink/mt7621.c b/arch/mips/ralink/mt7621.c
index 905460aeeb1f..0accb80db709 100644
--- a/arch/mips/ralink/mt7621.c
+++ b/arch/mips/ralink/mt7621.c
@@ -243,12 +243,12 @@ void prom_soc_init(struct ralink_soc_info *soc_info)

rt2880_pinmux_data = mt7621_pinmux_data;

+ soc_dev_init(soc_info, rev);
+
if (!register_cps_smp_ops())
return;
if (!register_cmp_smp_ops())
return;
if (!register_vsmp_smp_ops())
return;
-
- soc_dev_init(soc_info, rev);
}
--
2.16.4