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 88697ECAAD8 for ; Fri, 23 Sep 2022 04:45:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229498AbiIWEpI (ORCPT ); Fri, 23 Sep 2022 00:45:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44730 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229448AbiIWEpI (ORCPT ); Fri, 23 Sep 2022 00:45:08 -0400 Received: from bmailout2.hostsharing.net (bmailout2.hostsharing.net [83.223.78.240]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 77D2754CA8 for ; Thu, 22 Sep 2022 21:45:07 -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 bmailout2.hostsharing.net (Postfix) with ESMTPS id 61C0F2804E537; Fri, 23 Sep 2022 06:45:04 +0200 (CEST) Received: by h08.hostsharing.net (Postfix, from userid 100393) id 49FE650D47; Fri, 23 Sep 2022 06:45:04 +0200 (CEST) Date: Fri, 23 Sep 2022 06:45:04 +0200 From: Lukas Wunner To: Yang Yingliang Cc: linux-spi@vger.kernel.org, broonie@kernel.org Subject: Re: [PATCH -next v2 0/6] spi: Switch to use __devm_spi_alloc_controller() in some drivers Message-ID: <20220923044504.GA32594@wunner.de> References: <20220922083103.666157-1-yangyingliang@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220922083103.666157-1-yangyingliang@huawei.com> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org On Thu, Sep 22, 2022 at 04:30:57PM +0800, Yang Yingliang wrote: > This patchset is trying to replace spi_alloc_master() with > __devm_spi_alloc_controller() in some spi drivers. NAK for v2 of this series, drivers should never call __devm_spi_alloc_controller() directly. Thanks, Lukas