Received: by 10.213.65.68 with SMTP id h4csp884944imn; Tue, 27 Mar 2018 10:33:48 -0700 (PDT) X-Google-Smtp-Source: AIpwx4/QfBH0mAIaGaltvHAPR89I3Q+v8KmludXlSBNVdnRVj1R3pahKWHB4MzqjJPC2X8BDf8Cm X-Received: by 2002:a17:902:468:: with SMTP id 95-v6mr230089ple.360.1522172028083; Tue, 27 Mar 2018 10:33:48 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1522172028; cv=none; d=google.com; s=arc-20160816; b=TA3rr83g1piTlPuZpuAL77YFJKO898h6oaYTCUHUTxuqqMuh9vTTf+aQcECyJLd3lg fneclTjAkfbjBVVNOjWNI1cYDH7eLXUgqwLrgkdG/k1LNeItOSnI69Jonq1zl8Lb0Wjv 2/KVikqXr2CtoFwOmwrVgr9FOl1b/DvPtUsLVM6oQlBtEbS5RPngAmICRrGkNB5nj/El J4s8ezDQS59AC3ZXHgo25NadNbOsE614O4QKDyrcl7epPTSXLB5rXGy0U2bnV/EN8Z+7 jthRvGJX50QsXWqcgWoPsM05FLHs7zR7nmLpDotHowTTswNRnXJZ2nYP4otSO7OA1hAP hPsQ== 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=GF1c9DapeVpEA8jkSNp6UYtIGa3dXxP3k7W4imVC9bA=; b=WCHkxVgUr1uOgNRLTM81+9e3mb3axQZ1h5lDxP6IaBTHQUz7AQ1NV0PrLnVjiRId9Y ZtweCoXl0Ahq+2d4OuYlW3VMI7+o9PxF0P4s70hM637w8cA2sVrB+I6FkX3n+bm+1v53 ByXRzzebKV1tP7TjccmMcemrOkhXbdCIsOc19Jwuw8xSy6vvdyI8KMDrcNoWmC+6i7au vTMysBt35x95HDjlsoUO3Py/bMvojx6pDUmVnfRuifZUabteNAxZUz0Qk+UOZyUxYjY3 b2bJRnOtqIt/7Oepx/y31DVDdvXMHS9U0yocZMsOgfo2y1tA8uua3ohjrQ1C1EFQR55Q 2dnQ== 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 128si1121205pgh.189.2018.03.27.10.33.33; Tue, 27 Mar 2018 10:33:48 -0700 (PDT) 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 S1753600AbeC0Rbq (ORCPT + 99 others); Tue, 27 Mar 2018 13:31:46 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:44902 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754523AbeC0Qfj (ORCPT ); Tue, 27 Mar 2018 12:35:39 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id E30521262; Tue, 27 Mar 2018 16:35:38 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Arnd Bergmann , Yoshinori Sato , Andrew Morton , Linus Torvalds Subject: [PATCH 4.14 046/101] h8300: remove extraneous __BIG_ENDIAN definition Date: Tue, 27 Mar 2018 18:27:18 +0200 Message-Id: <20180327162752.860590355@linuxfoundation.org> X-Mailer: git-send-email 2.16.3 In-Reply-To: <20180327162749.993880276@linuxfoundation.org> References: <20180327162749.993880276@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.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Arnd Bergmann commit 1705f7c534163594f8b05e060cb49fbea86ca70b upstream. A bugfix I did earlier caused a build regression on h8300, which defines the __BIG_ENDIAN macro in a slightly different way than the generic code: arch/h8300/include/asm/byteorder.h:5:0: warning: "__BIG_ENDIAN" redefined We don't need to define it here, as the same macro is already provided by the linux/byteorder/big_endian.h, and that version does not conflict. While this is a v4.16 regression, my earlier patch also got backported to the 4.14 and 4.15 stable kernels, so we need the fixup there as well. Link: http://lkml.kernel.org/r/20180313120752.2645129-1-arnd@arndb.de Fixes: 101110f6271c ("Kbuild: always define endianess in kconfig.h") Signed-off-by: Arnd Bergmann Cc: Yoshinori Sato Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- arch/h8300/include/asm/byteorder.h | 1 - 1 file changed, 1 deletion(-) --- a/arch/h8300/include/asm/byteorder.h +++ b/arch/h8300/include/asm/byteorder.h @@ -2,7 +2,6 @@ #ifndef __H8300_BYTEORDER_H__ #define __H8300_BYTEORDER_H__ -#define __BIG_ENDIAN __ORDER_BIG_ENDIAN__ #include #endif