From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 75836C433B4 for ; Thu, 22 Apr 2021 13:57:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2AC0D6144A for ; Thu, 22 Apr 2021 13:57:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236792AbhDVN5u (ORCPT ); Thu, 22 Apr 2021 09:57:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57764 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236365AbhDVN5s (ORCPT ); Thu, 22 Apr 2021 09:57:48 -0400 Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EDF46C06174A for ; Thu, 22 Apr 2021 06:57:13 -0700 (PDT) Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 4FQzWC0CQdz9sV5; Thu, 22 Apr 2021 23:57:10 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ellerman.id.au; s=201909; t=1619099831; bh=vodDxdbMHgKzn3FZqqPkJFp2BSw+/poOlMN5woeQ7h0=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=IEwQvqr/Wt41NgGFe3I7tXI15JSRIevFn6iZ4x7dJw0jcqAg4bZGErLrd07H+5EmW AcBhGpeD+pnKR/qEvozsJtBK4SljBcFM4Jsxba3rVro0eStGCBMcfVCMnAE2/Mz+oB ahVxX/N8fMH3oA0mCMIQ7znIo04lmgO7X2AH5oH4DBwdehc9o8ovtW3eIckb8/KoSO nwLfxz5xAurz6mZG2AZmAj7LoksQ+TVPK7z5Dx+fWoWX9NrPeN/ciX+m7hCF9yhh5F h2ojbV+o3+PB3xv6rMt3g0HpjQILWBvKT1WtLN8GbHWU+RFjHdAqoKVy62MEowbgKn ncxCNaD6WoakA== From: Michael Ellerman To: Christophe Leroy , Benjamin Herrenschmidt , Paul Mackerras Cc: linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH v2] powerpc/kconfig: Restore alphabetic order of the selects under CONFIG_PPC In-Reply-To: <361ee3fc5009c709ae0ca592249bb0702c6ef073.1619024780.git.christophe.leroy@csgroup.eu> References: <361ee3fc5009c709ae0ca592249bb0702c6ef073.1619024780.git.christophe.leroy@csgroup.eu> Date: Thu, 22 Apr 2021 23:57:09 +1000 Message-ID: <87eef2bex6.fsf@mpe.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Christophe Leroy writes: > Commit a7d2475af7ae ("powerpc: Sort the selects under CONFIG_PPC") > sorted all selects under CONFIG_PPC. > > 4 years later, several items have been introduced at wrong place, > a few other have been renamed without moving them to their correct > place. > > Reorder them now. > > While we are at it, simplify the test for a couple of them: > - PPC_64 && PPC_PSERIES is simplified in PPC_PSERIES > - PPC_64 && PPC_BOOK3S is simplified in PPC_BOOK3S_64 > > Signed-off-by: Christophe Leroy > --- > v2: Rebased on d20f726744a0 ("Automatic merge of 'next' into merge (2021-04-21 22:57)") This will conflict badly with other things in linux-next if I merge it now. The best time to do this is just before rc1. I'll try to remember :) cheers