From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:38544 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751878AbdJEIcS (ORCPT ); Thu, 5 Oct 2017 04:32:18 -0400 Subject: Patch "MIPS: ralink: Fix incorrect assignment on ralink_soc" has been added to the 4.9-stable tree To: colin.king@canonical.com, alexander.levin@verizon.com, gregkh@linuxfoundation.org, john@phrozen.org, ralf@linux-mips.org Cc: , From: Date: Thu, 05 Oct 2017 10:30:27 +0200 Message-ID: <1507192227213140@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled MIPS: ralink: Fix incorrect assignment on ralink_soc to the 4.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: mips-ralink-fix-incorrect-assignment-on-ralink_soc.patch and it can be found in the queue-4.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From foo@baz Thu Oct 5 10:28:31 CEST 2017 From: Colin Ian King Date: Thu, 22 Dec 2016 23:52:58 +0000 Subject: MIPS: ralink: Fix incorrect assignment on ralink_soc From: Colin Ian King [ Upstream commit 08d90c81b714482dceb5323d14f6617bcf55ee61 ] ralink_soc sould be assigned to RT3883_SOC, replace incorrect comparision with assignment. Signed-off-by: Colin Ian King Fixes: 418d29c87061 ("MIPS: ralink: Unify SoC id handling") Cc: John Crispin 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 Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- arch/mips/ralink/rt3883.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/mips/ralink/rt3883.c +++ b/arch/mips/ralink/rt3883.c @@ -145,5 +145,5 @@ void prom_soc_init(struct ralink_soc_inf rt2880_pinmux_data = rt3883_pinmux_data; - ralink_soc == RT3883_SOC; + ralink_soc = RT3883_SOC; } Patches currently in stable-queue which might be from colin.king@canonical.com are queue-4.9/mips-ralink-fix-incorrect-assignment-on-ralink_soc.patch