Received: by 2002:a25:31c3:0:0:0:0:0 with SMTP id x186csp6608436ybx; Mon, 11 Nov 2019 11:45:22 -0800 (PST) X-Google-Smtp-Source: APXvYqy2WomwJWQ21wD0Fx3ngmPS47kyHyPOTYchIliWzSndhOTzoRagfYwYb+9YXu+0q3lvVb5q X-Received: by 2002:aa7:d4d8:: with SMTP id t24mr28448775edr.40.1573501522530; Mon, 11 Nov 2019 11:45:22 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1573501522; cv=none; d=google.com; s=arc-20160816; b=gIb3aPGtC7EM5i1s41tC4vQVovig/y2XGWZbai/+SIQTvok9aCgXMjGXIPzcLmYnS5 Dtt+j2uuKlzJa2GLlb7aerOyEw+EtcJDbUiX11oPdEOfshN0NLO7cmlyw/jinPnNrpYw FnNPKa4GJZT0bH/VG8CR+tXhHotoJ2MAqYjRskHNURDbZpiK76GQjE7f0wWM8kBLiR+m 9NqqpesA7JAWkQ4/tARLStGEG3e90BiFbPwisVXzvyatJkOpklnEqskiko5tPAB8uXXl RBTUET9d49+s2lYuZN90x4AhmxqSCUbQPwl6O86+WHHXyzE91fgZ6JVxPUo8ETCg3JPN lRaw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=iS9Tqr/boBfxG4ttLcqDW/bGwnfYUtkAgoqCOqJPz0o=; b=DwnXZ6JhTgyejNmWO62UhjO59YrJ7ipDRwHdf6KTO54IKul7HPiwhjeaV/tv6EOskS xE2tBl/7+iiZPG9o1ICBAvRY3iaqLDK3tjyes3OxWdG6YLw1k7qUJGiOQ4wqx78ibGKO d0Gb9k+T+oYQBmoOGl84gIoBht0M5xABJXtfJ1hK8XCS38ZJN0sqKkUBdpezSTCMpTNp U06xhys9JGeZkTd/W03BhpxUhqZ8vQlKACU/m1eg3E81pw2Z7K+sXtLocFgmnCGT8nR+ mmmgjl7rMSNYUHaJ7AnxcnMEZvfsDZxiROWz22xzSLfMQ7nyd4ssjiq57+v451MOqUMc HBoA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id e22si4621226ejj.234.2019.11.11.11.44.57; Mon, 11 Nov 2019 11:45:22 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727480AbfKKTmF (ORCPT + 99 others); Mon, 11 Nov 2019 14:42:05 -0500 Received: from sauhun.de ([88.99.104.3]:49384 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727149AbfKKTmE (ORCPT ); Mon, 11 Nov 2019 14:42:04 -0500 Received: from localhost (x4db75ae4.dyn.telefonica.de [77.183.90.228]) by pokefinder.org (Postfix) with ESMTPSA id 985922C0428; Mon, 11 Nov 2019 20:42:02 +0100 (CET) Date: Mon, 11 Nov 2019 20:42:02 +0100 From: Wolfram Sang To: Alain Volmat Cc: pierre-yves.mordret@st.com, alexandre.torgue@st.com, linux-i2c@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, fabrice.gasnier@st.com Subject: Re: [PATCH] i2c: i2c-stm32f7: fix & reorder remove & probe error handling Message-ID: <20191111194202.GD1608@kunai> References: <1572012264-31996-1-git-send-email-alain.volmat@st.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="VV4b6MQE+OnNyhkM" Content-Disposition: inline In-Reply-To: <1572012264-31996-1-git-send-email-alain.volmat@st.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --VV4b6MQE+OnNyhkM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 25, 2019 at 04:04:24PM +0200, Alain Volmat wrote: > Add missing dma channels free calls in case of error during probe > and reorder the remove function so that dma channels are freed after > the i2c adapter is deleted. > Overall, reorder the remove function so that probe error handling order > and remove function order are same. >=20 > Fixes: 7ecc8cfde553 ("i2c: i2c-stm32f7: Add DMA support") >=20 > Signed-off-by: Alain Volmat Applied to for-next, thanks! --VV4b6MQE+OnNyhkM Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEOZGx6rniZ1Gk92RdFA3kzBSgKbYFAl3JuYkACgkQFA3kzBSg KbYcnRAAq1jv0t+cBFdjV0cAyRRX0WL1Iv9MAU84u/vxXm3x5WV277AuXXWzofmd XqKJsLIq6lSoh20bC+LHePMkmQ+T8oX6C8c4wjmqzls5Uq2St0evOX39JoQa+yFu Q+/S1xdhPIjOzqJbwtEw/iVZ3KaHzEsTJEBpQEhH786eiv1vfkUiAKFrJ7KLSEMs BUsNPYE/b+EasW9rylAPjoVp6ALXxPU8ScXQq4H8mh7Ifvlp01kx8Vi4ukI0niXQ W+VtoiCxEjRTIx9EaeVZAzcbVouvePqp8hB7GP5+ys5s8bXaTnJcSc86Uu5tY9Ax 0oZ1s1irGqpDz67hb5inyDvC0d0cvhaqNcqW5Ez6tCA4A0sKYETGfRWXMmFIbNTd 8j8M2Ecq+twpTpwoMwtYMLwkFJvVhizOM7MSYctisgGkhZcLzNVq2CzJ1bEIVk3I qSQT4JfDWiVCpt/aUSrxdrzAarpbKIbfKmBtNlXKkOu2g4QTioty1LxntndndIpC HHgk7ZuoqnDk2IQdzv7MJiBDVEmAZICPCZ/dESjNnZuQ/W45Iuc28CZiYpDW+mmh 64zfpSo/jAp9ZVoU0Imp+zKCtuqldEEAScptvP3e06kMuNsZRuShAl1DAudYfFIf Y8NeKiE3ex/XEW5c5jLlt7o9oc0ipoOd0CPALRJjXnjyl4DICFE= =exY/ -----END PGP SIGNATURE----- --VV4b6MQE+OnNyhkM--