Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941934AbcLVXxq (ORCPT ); Thu, 22 Dec 2016 18:53:46 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:44227 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S941192AbcLVXxp (ORCPT ); Thu, 22 Dec 2016 18:53:45 -0500 From: Colin King To: John Crispin , Ralf Baechle , linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Subject: [PATCH] MIPS: ralink: fix incorrect assignment on ralink_soc Date: Thu, 22 Dec 2016 23:52:58 +0000 Message-Id: <20161222235258.5525-1-colin.king@canonical.com> X-Mailer: git-send-email 2.10.2 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 634 Lines: 23 From: Colin Ian King ralink_soc sould be assigned to RT3883_SOC, replace incorrect comparision with assignment. Signed-off-by: Colin Ian King --- arch/mips/ralink/rt3883.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/ralink/rt3883.c b/arch/mips/ralink/rt3883.c index 141c597..f869052 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; } -- 2.10.2