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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 351B9C32771 for ; Wed, 28 Sep 2022 15:11:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234233AbiI1PL0 (ORCPT ); Wed, 28 Sep 2022 11:11:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40304 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233963AbiI1PLU (ORCPT ); Wed, 28 Sep 2022 11:11:20 -0400 Received: from bmailout1.hostsharing.net (bmailout1.hostsharing.net [IPv6:2a01:37:1000::53df:5f64:0]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8D0B82C13E for ; Wed, 28 Sep 2022 08:11:18 -0700 (PDT) Received: from h08.hostsharing.net (h08.hostsharing.net [IPv6:2a01:37:1000::53df:5f1c:0]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "*.hostsharing.net", Issuer "RapidSSL TLS DV RSA Mixed SHA256 2020 CA-1" (verified OK)) by bmailout1.hostsharing.net (Postfix) with ESMTPS id 73E243000D929; Wed, 28 Sep 2022 17:11:16 +0200 (CEST) Received: by h08.hostsharing.net (Postfix, from userid 100393) id 5A392324FD; Wed, 28 Sep 2022 17:11:16 +0200 (CEST) Date: Wed, 28 Sep 2022 17:11:16 +0200 From: Lukas Wunner To: Mark Brown Cc: Geert Uytterhoeven , Yang Yingliang , linux-spi@vger.kernel.org Subject: Re: [PATCH -next 1/2] spi: introduce devm_spi_alloc_controller() Message-ID: <20220928151116.GA13418@wunner.de> References: <20220926142933.2299460-1-yangyingliang@huawei.com> <20220927034525.GA32253@wunner.de> <703c43ca-ab47-bfd9-da26-d435aaf236e5@huawei.com> <20220927133129.GA29821@wunner.de> <20220927201901.GB24652@wunner.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org On Wed, Sep 28, 2022 at 12:15:15PM +0100, Mark Brown wrote: > On Tue, Sep 27, 2022 at 10:43:08PM +0200, Geert Uytterhoeven wrote: > > On Tue, Sep 27, 2022 at 10:24 PM Mark Brown wrote: > > > > Sure, but since the current wrappers use the legacy names this means > > > that we need new wrappers with more modern names hence there is > > > something to improve here. > > > So what are the more modern names? > > It's unfortunately not 100% clear, and our use of controller for the > generic thing gets in the way a bit. There was some stuff from one of > the open source hardware groups recently that tried to propose new names > but I'm not immediately finding it. "host" and "target" would probably > do the trick? Perhaps you mean that one? https://www.oshwa.org/a-resolution-to-redefine-spi-signal-names/ Looks like they're replacing master with controller and slave with peripheral. Pity, we're using controller as an umbrella term for either one of them. Renaming that will lead to an awful lot of churn. :( Thanks, Lukas