Skip to content

Commit 670f77f

Browse files
DragonBlueptsbogend
authored andcommitted
mips: ralink: match all supported system controller compatible strings
Recently, A new clock and reset controller driver has been introduced to the ralink mips target[1]. It provides proper system control and adds more SoC specific compatible strings. In order to better initialize CPUs, this patch removes the outdated "ralink,mt7620a-sysc" and add all dt-binding documented compatible strings to the system controller match table. [1] https://lore.kernel.org/all/[email protected]/ Signed-off-by: Shiji Yang <[email protected]> Reviewed-by: Sergio Paracuellos <[email protected]> Signed-off-by: Thomas Bogendoerfer <[email protected]>
1 parent 7b191b9 commit 670f77f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

arch/mips/ralink/of.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,15 @@ static const struct of_device_id mtmips_memc_match[] = {
4040

4141
static const struct of_device_id mtmips_sysc_match[] = {
4242
{ .compatible = "mediatek,mt7621-sysc" },
43-
{ .compatible = "ralink,mt7620a-sysc" },
43+
{ .compatible = "ralink,mt7620-sysc" },
44+
{ .compatible = "ralink,mt7628-sysc" },
45+
{ .compatible = "ralink,mt7688-sysc" },
4446
{ .compatible = "ralink,rt2880-sysc" },
4547
{ .compatible = "ralink,rt3050-sysc" },
48+
{ .compatible = "ralink,rt3052-sysc" },
49+
{ .compatible = "ralink,rt3352-sysc" },
4650
{ .compatible = "ralink,rt3883-sysc" },
51+
{ .compatible = "ralink,rt5350-sysc" },
4752
{}
4853
};
4954

0 commit comments

Comments
 (0)