diff options
author | Colin Ian King <[email protected]> | 2016-12-22 23:52:58 +0000 |
---|---|---|
committer | Ralf Baechle <[email protected]> | 2017-01-03 16:48:40 +0100 |
commit | 08d90c81b714482dceb5323d14f6617bcf55ee61 (patch) | |
tree | 8a305d4747ef204a6452ff54c524ef105dbbd7b7 | |
parent | 48ed33c1b3737eb1324c1ae023a8eeccad60cef9 (diff) |
MIPS: ralink: Fix incorrect assignment on ralink_soc
ralink_soc sould be assigned to RT3883_SOC, replace incorrect
comparision with assignment.
Signed-off-by: Colin Ian King <[email protected]>
Fixes: 418d29c87061 ("MIPS: ralink: Unify SoC id handling")
Cc: John Crispin <[email protected]>
Cc: [email protected]
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/14903/
Signed-off-by: Ralf Baechle <[email protected]>
-rw-r--r-- | arch/mips/ralink/rt3883.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/ralink/rt3883.c b/arch/mips/ralink/rt3883.c index 141c597ec324..f869052e4a0d 100644 --- a/arch/mips/ralink/rt3883.c +++ b/arch/mips/ralink/rt3883.c @@ -157,5 +157,5 @@ void prom_soc_init(struct ralink_soc_info *soc_info) rt2880_pinmux_data = rt3883_pinmux_data; - ralink_soc == RT3883_SOC; + ralink_soc = RT3883_SOC; } |