Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp6956069ybc; Thu, 28 Nov 2019 08:18:27 -0800 (PST) X-Google-Smtp-Source: APXvYqw/pBOYOt/GQXwerQIdEUoBucweT+Xk3lcBGSxa+302uSTdOOyu2MvPapMawAtgcBwUbf3w X-Received: by 2002:a17:906:d71:: with SMTP id s17mr54996880ejh.312.1574957907123; Thu, 28 Nov 2019 08:18:27 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1574957907; cv=none; d=google.com; s=arc-20160816; b=dU26EjytCKN/V4a1zOTsSmfKZuPBQauxBAs5lFQoLAQOgN2gsh+fHaw3HsL6ZReLDs 82obXh9FxhKSRPL7zspuVUwQF9r3TgTQzrPRLuLFxnJcnj33FFPFii49IPBSSxyWx77H E+G6boK1QXucCVTzfEaddny4fjAFcMSnqZ4Ww1qKo0OIuU/V7NhpVVvZaaLjBxIW3PyZ 3wLOMTU+iNFV+M0ScsDFyBFvkY4YGnYzBhbyb61m0PrFpdPWkyljV9z1g1suEF+2i0ER 8AGjhWHyGRFoNndgUAm2xxa2PjdsMoqnn0g8ffLqBOExxSX2svc/r0S2rpSMdAcPKDid VHbw== 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=faKVAYJlyT1rqkatRE1dLZq0WoT2ISgrO0+jWvK4UL4=; b=qagPWpul4SDHP+fkqj3FKXSa0e91qn1iArsqEcY9rN/8RshaOMWBHVLslrntoW46eH 5cOWaQATD1lv9xh5lxG1aovw/KlUXYi6TlXwEYIrkx2r4M5HeWZQXK0sLhwfjV/LqBy1 a0/Rwa+tQSSYA9pYaa6cUDCCGb92CQJMuizoIzOxjYb7E7k8S2st4/Z7EpZwEPCJhSvR Zn5dD5wM1pgf2bDezVweHEmsmwJV+UzTU7/J1BE/glwjV8Wqe1DQVnp50wD+sll1B1At SjPFOYiu2O4T16t8ytatWI/aSJfirNI2g4lgms5YH13OgGVkAfbxe+hRzF2loH/mxWHC hM4Q== 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 m14si13184475edp.78.2019.11.28.08.18.02; Thu, 28 Nov 2019 08:18:27 -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 S1726610AbfK1QQq (ORCPT + 99 others); Thu, 28 Nov 2019 11:16:46 -0500 Received: from sauhun.de ([88.99.104.3]:43852 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726446AbfK1QQp (ORCPT ); Thu, 28 Nov 2019 11:16:45 -0500 Received: from localhost (p54B33127.dip0.t-ipconnect.de [84.179.49.39]) by pokefinder.org (Postfix) with ESMTPSA id 111DF2C039E; Thu, 28 Nov 2019 17:16:43 +0100 (CET) Date: Thu, 28 Nov 2019 17:16:42 +0100 From: Wolfram Sang To: Wolfram Sang Cc: linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH 01/12] i2c: replace i2c_new_probed_device with an ERR_PTR variant Message-ID: <20191128161642.GC5412@kunai> References: <20191106095033.25182-1-wsa+renesas@sang-engineering.com> <20191106095033.25182-2-wsa+renesas@sang-engineering.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="8NvZYKFJsRX2Djef" Content-Disposition: inline In-Reply-To: <20191106095033.25182-2-wsa+renesas@sang-engineering.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 --8NvZYKFJsRX2Djef Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Nov 06, 2019 at 10:50:19AM +0100, Wolfram Sang wrote: > In the general move to have i2c_new_*_device functions which return > ERR_PTR instead of NULL, this patch converts i2c_new_probed_device(). >=20 > There are only few users, so this patch converts the I2C core and all > users in one go. The function gets renamed to i2c_new_scanned_device() > so out-of-tree users will get a build failure to understand they need to > adapt their error checking code. >=20 > Signed-off-by: Wolfram Sang Eeks, this nearly slipped through the cracks because I marked it as RFC in patchwork... Applied to for-next, thanks! --8NvZYKFJsRX2Djef Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIyBAABCgAdFiEEOZGx6rniZ1Gk92RdFA3kzBSgKbYFAl3f8uYACgkQFA3kzBSg Kbb4cg/4oDouHaIm5+H8FfA0fpu1y0g+oBZDOFdCpknFWq/HPG4KmsDAdL2AWceN 7ECWh9/izN4m0K5Ffl93UDi3z0hPwLwoogRGWtKef3UwV9/gimFdHXSS/nbeX+uq Jx+HA1Ie5mOGEUtBKM7RPS/7wdsfKv93cYWtj3wqH2VXJO1vxnG12YdVTjeeKy+4 Qep+Sl9z6zWm1hD7uP2TB5MngSb4fpkJvUKG7vQP7ExTrPhEetjHCH2kcQlJ04Kw lUvyZDs+0X3bxiu/T58/IfoXlMGSFy+V8/rdRc7wrtRGAYB9Y7W4lDhUcy+cpCt3 WL/lwMgdgf0bVsYCCDApm+2oVNjB4kmCznXChH9P9oSUHKz5sMw8xQ2NKr/EE5MS QcuvCx2zGzPijHQEgQtT1AkgFfbp1c+Q4o31xO0iiXr+825G2zze/9QZm0LOywgR HsBKHwtDhHkCGCpHDm986ePZEEKuWgzPsAf96difB9+uwZVtou2zgvnfYO7cb913 w/UCqT8dxmNvrTynMBfnhKYNuESEaPAwYnAot0WlDgbxSrMQoVTuLd3ZhC4Ncs8V igOzuE4kBLlRY5ojrOjRF+/S6aBJaUkDFuSmDJygDuNR5DjVEtl6iVo7ev5DfbZ1 yt0Odho8eHv/nzK5qLeXVlsqsSBGuLc911kZF60S66l2tjticQ== =bUe7 -----END PGP SIGNATURE----- --8NvZYKFJsRX2Djef--