Skip to content

Commit 1c3ef07

Browse files
Colin Ian Kinggregkh
authored andcommitted
MIPS: ralink: Fix incorrect assignment on ralink_soc
[ Upstream commit 08d90c81b714482dceb5323d14f6617bcf55ee61 ] ralink_soc sould be assigned to RT3883_SOC, replace incorrect comparision with assignment. Signed-off-by: Colin Ian King <colin.king@canonical.com> Fixes: 418d29c ("MIPS: ralink: Unify SoC id handling") Cc: John Crispin <john@phrozen.org> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/14903/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 1e35a2a commit 1c3ef07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/mips/ralink/rt3883.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,5 +144,5 @@ void prom_soc_init(struct ralink_soc_info *soc_info)
144144

145145
rt2880_pinmux_data = rt3883_pinmux_data;
146146

147-
ralink_soc == RT3883_SOC;
147+
ralink_soc = RT3883_SOC;
148148
}

0 commit comments

Comments
 (0)