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 alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 36AE0C43334 for ; Mon, 4 Jul 2022 06:21:17 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 9CC2716D9; Mon, 4 Jul 2022 08:20:25 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 9CC2716D9 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1656915675; bh=A4h5GbEBxWOrFEgxeNla7JtQHAIQ1C3ga5hbZfT2dCs=; h=Date:From:To:Subject:References:In-Reply-To:Cc:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=oM86BIIafPsLDQfPGHlwnI977aTlAopDEYbmgpYmZcfQInk81MUhrGkiZFrG7b0DY VtA3S4Tc7pAC51Qmk9at3AKFqYTWZuyeuhUr8BBbFiWUEj/POzWZXa2vqlypasww/A eH2gxMm6RX7clLMVGoX4YL8G9q2At4qJUCnbmrwk= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id 2D471F80141; Mon, 4 Jul 2022 08:20:25 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id F2E3EF8014E; Mon, 4 Jul 2022 08:20:22 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 3DAD4F8012A for ; Mon, 4 Jul 2022 08:20:19 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 3DAD4F8012A Authentication-Results: alsa1.perex.cz; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="tY0CRepk" Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 7607DB80D24; Mon, 4 Jul 2022 06:20:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 99034C341CA; Mon, 4 Jul 2022 06:20:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656915617; bh=A4h5GbEBxWOrFEgxeNla7JtQHAIQ1C3ga5hbZfT2dCs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=tY0CRepkAq0a+vv2aJ/9UFVk3r/+tC0Bpag74VMvcIecMHRFoKKuESUTAfI60XGWK fi5+Ula+V8dD7O2hOvL4EEB1a2Zqe1SkvxuZ8vVvb/YOO2qEKh3ohNNCYq2XOSnRt4 XA9Q5FwC/jZFfRM5dKFFd09S3YHVO3QSeCm+TImtre8Cmre2DBquv+hID+8lP4HRUt AZNiNqTkGcJZ8vXxWtrBSvrQN6R5vn4xb4Upfqu1JHbqCQJC4ZZZVqIPDCwmNr9V3h p3EMruv0P8yzcHua73rZO4gYWbUGIQp75o3KAApPmdnPYDSCa0/yK69qd9lTMmyeep yLRd8fBqCE0rw== Date: Mon, 4 Jul 2022 11:50:13 +0530 From: Vinod Koul To: Pierre-Louis Bossart Subject: Re: [PATCH] soundwire: bus_type: fix remove and shutdown support Message-ID: References: <20220610015105.25987-1-yung-chuan.liao@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Cc: alsa-devel@alsa-project.org, gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, srinivas.kandagatla@linaro.org, sanyog.r.kale@intel.com, Bard Liao , bard.liao@intel.com X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" On 04-07-22, 11:13, Vinod Koul wrote: > On 23-06-22, 09:54, Pierre-Louis Bossart wrote: > I see that dev_pm_domain_detach() is called unconditionally and not > dependent on remove method which seems right to me. > > The code seems same since 9251345dca24b And I overlooked the setting of method, which is correct, sorry for the noise. Have applied this now, thanks -- ~Vinod