From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754416AbbIIC0y (ORCPT ); Tue, 8 Sep 2015 22:26:54 -0400 Received: from ozlabs.org ([103.22.144.67]:49078 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754583AbbIIC0q (ORCPT ); Tue, 8 Sep 2015 22:26:46 -0400 Message-ID: <1441765604.7854.6.camel@ellerman.id.au> Subject: Re: [PATCH] powerpc: Kconfig: remove BE-only platforms from LE kernel build From: Michael Ellerman To: Boqun Feng Cc: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, Arnd Bergmann , Benjamin Herrenschmidt , Paul Mackerras , Olof Johansson , Geoff Levand Date: Wed, 09 Sep 2015 12:26:44 +1000 In-Reply-To: <1441583880-17824-1-git-send-email-boqun.feng@gmail.com> References: <1441583880-17824-1-git-send-email-boqun.feng@gmail.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.11-0ubuntu3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2015-09-07 at 07:58 +0800, Boqun Feng wrote: > diff --git a/arch/powerpc/platforms/cell/Kconfig b/arch/powerpc/platforms/cell/Kconfig > index 2f23133..808a904 100644 > --- a/arch/powerpc/platforms/cell/Kconfig > +++ b/arch/powerpc/platforms/cell/Kconfig > @@ -25,7 +25,7 @@ config PPC_CELL_NATIVE > > config PPC_IBM_CELL_BLADE > bool "IBM Cell Blade" > - depends on PPC64 && PPC_BOOK3S > + depends on PPC64 && PPC_BOOK3S && CPU_BIG_ENDIAN We end up saying this five times. We already have PPC_BOOK3S_64 which captures the first two conditions, should we add a PPC_BOOK3S_64_BE which expresses it all? cheers