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 23574C433F5 for ; Fri, 11 Feb 2022 06:49:34 +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 2492F189C; Fri, 11 Feb 2022 07:48:42 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 2492F189C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1644562172; bh=gmBDke/Eqe0vt9nmaqpu+uYvi5DAKYYCl85zDp/sin0=; h=Date:From:To:Subject:References:In-Reply-To:Cc:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=ORU8Lwe8zGfo+tKMGlFCoD9jTknVSl8SD8lo+7epCkvX1/V54MXY3KeKkIz22O3Hi AMx/62jwYOwTAxC7sx5mN1fGzZxtoe0gqNyfnxXWOLpgu/eUVTpHpYwIPhrRWPxKbl 7921UapaDDF1kM9LIZWB/eb8za74eGdIT5xM7OZg= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id A966BF8012C; Fri, 11 Feb 2022 07:48:41 +0100 (CET) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 4BA4FF80139; Fri, 11 Feb 2022 07:48:40 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id B3640F80125 for ; Fri, 11 Feb 2022 07:48:36 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz B3640F80125 Authentication-Results: alsa1.perex.cz; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Xoaj3I/S" 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 dfw.source.kernel.org (Postfix) with ESMTPS id E085E61B72; Fri, 11 Feb 2022 06:48:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 78AB3C340E9; Fri, 11 Feb 2022 06:48:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1644562112; bh=gmBDke/Eqe0vt9nmaqpu+uYvi5DAKYYCl85zDp/sin0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Xoaj3I/S1Qn84qINfIRlgGNGWzeWc7INRi9oy3CbwGvmxPssVMF8r+SycTI2w4CE/ xhqSvqYM0ENUrj5kokkm3/ShV2dNXeZiyBmJKhtpEDA8Vu5+rTOdC1SFIX6+93+dpw 6cmcHMCY8Y9lh5IvoCFUSeoj5ui4rd7XSbtWixax+khMGXbC7Uua0P4MqOx2eW/oTu Dmq84R4A5wrPzzLy80MEMRQrK9j/LeWgKBgoShARtksz9AzEZxhV4vL1Vt/CgP2x+N Ou//xV+Ei+miRQPyzVpImm/nQ9cA7/VcmLlVO7SXZ8v9G82/T0IyMAnostNp2Um97q 657rn2HByJeaw== Date: Fri, 11 Feb 2022 12:18:27 +0530 From: Vinod Koul To: Bard Liao Subject: Re: [PATCH 00/19] soundwire: stream: cleanup of 'stream' support Message-ID: References: <20220126011715.28204-1-yung-chuan.liao@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220126011715.28204-1-yung-chuan.liao@linux.intel.com> Cc: alsa-devel@alsa-project.org, gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, pierre-louis.bossart@linux.intel.com, srinivas.kandagatla@linaro.org, sanyog.r.kale@intel.com, 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 26-01-22, 09:16, Bard Liao wrote: > This series revisits the SoundWire 'sdw_stream' support to split allocation > and configuration steps. This is necessary if for example the routines are > called multiple times from the hw_params stage. This also helps with better > error handling. Patch 13 added a trailing empty line to file, I have fixed that up while applying... -- ~Vinod