Received: by 10.223.185.116 with SMTP id b49csp1016224wrg; Wed, 21 Feb 2018 10:36:51 -0800 (PST) X-Google-Smtp-Source: AH8x226ocz4aIj7G5iiNFfCRySjxxZ9ILcU7vV5TpIjw56GWp8T4cjFALeVIHW2sKpJqzngWw5oe X-Received: by 10.101.76.13 with SMTP id u13mr3347140pgq.287.1519238211694; Wed, 21 Feb 2018 10:36:51 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519238211; cv=none; d=google.com; s=arc-20160816; b=WjtrOyxo7pstuohPHZTGX1Yhz2Idu8vVsNasD0LjsF/VAmRpHy6X9qTuq/fK9UOlGf z7toDF1rOOZaqqIFMJBVwuKKhDxkhFTQPjsVDdp6Vi7cpJ8S5ss44I5fNEGmdw0Qr3fZ 80XJsNw12zBZK1DiwuGVR2CNCg1w7AzV/Kng1XNL2lRUQejDtGW16/v6WJmq2g3AZKrF rwcUpyat0lQ8oBbyVVBYGNuwb27hXE5jwUtbEZp4XNkgGP81NEXaP6+9SjuEGdLtjgU3 ge7TpiGouxVIW21T4J/hejgxRUpJeYydFVqeSloWmbDaW75/5Lwzbo4ERVDWps2YS1dv OLAw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=cBPOvVLXVweDnDlCpZO4FAXHEzWOrc9WuYLjXZW2Yrs=; b=Kv5p+fAG/sY1V64CX7lIABfpJXkMXJQOTWhmayUAIoDOl8IuQ6QWXhaFqjtunXwzUK ccPgEsSQkA2LOqzfBO/oBkvpZC+qrwfuic/xBkA+r4/+kRkJGHt3OSKXo5PTCqzpSHy9 /eba6fR+AOVHe5Cbs6Gxc/AjKP8rfig19W056lBK17qMXcRCacYU3slITL3dgqFOS7SN Atj++nbwPf6BWk4F326YyjL2UiLNzTlcKhLsN4yTRVe23RiWKDxlvTQ3Zt3Gg3A+aVwh pGyPs2kBkcU4Xa9j+8+1OcoBbgipEal4KApx3z3bs86mP3XVY24W1op4DBuq9SlLGe9g 3B6A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 1-v6si28715plc.784.2018.02.21.10.36.37; Wed, 21 Feb 2018 10:36:51 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936333AbeBUNLP (ORCPT + 99 others); Wed, 21 Feb 2018 08:11:15 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:44514 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S936274AbeBUNLK (ORCPT ); Wed, 21 Feb 2018 08:11:10 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 64C211204; Wed, 21 Feb 2018 13:10:42 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Corentin Labbe , James Hogan , Ralf Baechle , linux-mips@linux-mips.org Subject: [PATCH 4.15 112/163] MIPS: Fix typo BIG_ENDIAN to CPU_BIG_ENDIAN Date: Wed, 21 Feb 2018 13:49:01 +0100 Message-Id: <20180221124536.358919398@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180221124529.931834518@linuxfoundation.org> References: <20180221124529.931834518@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Corentin Labbe commit 2e6522c565522a2e18409c315c49d78c8b74807b upstream. MIPS_GENERIC selects some options conditional on BIG_ENDIAN which does not exist. Replace BIG_ENDIAN with CPU_BIG_ENDIAN which is the correct kconfig name. Note that BMIPS_GENERIC does the same which confirms that this patch is needed. Fixes: eed0eabd12ef0 ("MIPS: generic: Introduce generic DT-based board support") Signed-off-by: Corentin Labbe Reviewed-by: James Hogan Cc: Ralf Baechle Cc: linux-mips@linux-mips.org Cc: # 4.9+ Patchwork: https://patchwork.linux-mips.org/patch/18495/ [jhogan@kernel.org: Clean up commit message] Signed-off-by: James Hogan Signed-off-by: Greg Kroah-Hartman --- arch/mips/Kconfig | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -119,12 +119,12 @@ config MIPS_GENERIC select SYS_SUPPORTS_MULTITHREADING select SYS_SUPPORTS_RELOCATABLE select SYS_SUPPORTS_SMARTMIPS - select USB_EHCI_BIG_ENDIAN_DESC if BIG_ENDIAN - select USB_EHCI_BIG_ENDIAN_MMIO if BIG_ENDIAN - select USB_OHCI_BIG_ENDIAN_DESC if BIG_ENDIAN - select USB_OHCI_BIG_ENDIAN_MMIO if BIG_ENDIAN - select USB_UHCI_BIG_ENDIAN_DESC if BIG_ENDIAN - select USB_UHCI_BIG_ENDIAN_MMIO if BIG_ENDIAN + select USB_EHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN + select USB_EHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN + select USB_OHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN + select USB_OHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN + select USB_UHCI_BIG_ENDIAN_DESC if CPU_BIG_ENDIAN + select USB_UHCI_BIG_ENDIAN_MMIO if CPU_BIG_ENDIAN select USE_OF help Select this to build a kernel which aims to support multiple boards,