projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fad2522
)
MIPS: ralink: Fix invalid assignment of SoC type
author
John Crispin
<blogic@openwrt.org>
Mon, 4 Jan 2016 19:23:58 +0000
(20:23 +0100)
committer
Ralf Baechle
<ralf@linux-mips.org>
Tue, 19 Jan 2016 23:39:20 +0000
(
00:39
+0100)
Commit
418d29c87061
("MIPS: ralink: Unify SoC id handling") introduced
broken code. We obviously need to assign the value.
Signed-off-by: John Crispin <blogic@openwrt.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/11993/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/ralink/rt288x.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/ralink/rt288x.c
b/arch/mips/ralink/rt288x.c
index 844f5cd55c8f1c1e96e20db2a888c22e1fb12327..3c84166ebcb779b1f50f9711c820977295873377 100644
(file)
--- a/
arch/mips/ralink/rt288x.c
+++ b/
arch/mips/ralink/rt288x.c
@@
-119,5
+119,5
@@
void prom_soc_init(struct ralink_soc_info *soc_info)
soc_info->mem_size_max = RT2880_MEM_SIZE_MAX;
rt2880_pinmux_data = rt2880_pinmux_data_act;
- ralink_soc =
=
RT2880_SOC;
+ ralink_soc = RT2880_SOC;
}