Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp6896520ybl; Wed, 15 Jan 2020 11:59:48 -0800 (PST) X-Google-Smtp-Source: APXvYqxNB0EsXA/x/8V+P1vczxJ/MvwQcPim1MoWyZ5iKjpPt9hcu2wmXsKrpcrDytxe0oROBhy3 X-Received: by 2002:aca:d787:: with SMTP id o129mr1249232oig.75.1579118388796; Wed, 15 Jan 2020 11:59:48 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1579118388; cv=none; d=google.com; s=arc-20160816; b=bCjzV3Ry3i76qXq9BU0sKnrweJAyf10E0p0ZTF5pD1OAQ2G+LMe/IUVqYbWW6Iq5g4 BUc9QAm/R8YcjT9YXly2yP9n8J2XjOtjTL3kfMV1BL7LAHDzsdGb+Bm8qJlIIFDdn/u6 GgNc6ocIFQEPLvSn9Dbv8HVPgfE1f9stlThOeUUyj/iQoiG+KsHvQmROdpymHZmpvbxX 6l/+qO72Ldq3Zwa2qrZAow8YXQqkbAM8JozvjVfIlxndmPyBTEJu/WRGFpdjGv7ZLAWY 06FHwQ63zt8T6S8Bi4SyppDpBr1cIVd3LbWtdU1phf/mkcho+/Jk1wq1BFCtEmpiQ/3P oEHA== 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=//wdZZntg659A1Un9Vv6EmPa8+OkBsOwFi7QrCHgm5o=; b=IGEyeMhLyhKFhhlb+ieeYOVWPd8IDPVfezAQpeoJaTyWxxE3XVBqKs2inYLA0sqMov S5M+bCovDPaVsW0A7aLfF6DAVj+6pehDorfyCrIcfVCbp1CI24/4fdTTPA4y/6CP9mOr MAacIAbWv7ikVY60SCBUVYNQ5Ty8iFg7rSICdgpzRc11oEZu1aVI8zFB8YnSY6/jJ47d BzX6XIz6g2qNn8Bo40erRl9bVhQdHwc3s1Lq9lR06rcWAFk4ZZIgldsV+I+yNbSp8ukZ gTekduxpJS9CDAatqZLdiBYpI2P7/wioBEbMC6DAKEqYEra7j4Qxvz5yITUjGLMG11IE muPw== 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 u21si9978927oic.263.2020.01.15.11.59.36; Wed, 15 Jan 2020 11:59:48 -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 S1729625AbgAOT5H (ORCPT + 99 others); Wed, 15 Jan 2020 14:57:07 -0500 Received: from sauhun.de ([88.99.104.3]:41054 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726566AbgAOT5H (ORCPT ); Wed, 15 Jan 2020 14:57:07 -0500 Received: from localhost (p54B33239.dip0.t-ipconnect.de [84.179.50.57]) by pokefinder.org (Postfix) with ESMTPSA id 467852C0742; Wed, 15 Jan 2020 20:57:05 +0100 (CET) Date: Wed, 15 Jan 2020 20:57:05 +0100 From: Wolfram Sang To: Wolfram Sang Cc: linux-i2c@vger.kernel.org, linux-acpi@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH 00/12] i2c: convert subsystem to use i2c_new_client_device() Message-ID: <20200115195704.GC23789@ninjato> References: <20200107174748.9616-1-wsa+renesas@sang-engineering.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="oTHb8nViIGeoXxdp" Content-Disposition: inline In-Reply-To: <20200107174748.9616-1-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 --oTHb8nViIGeoXxdp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 07, 2020 at 06:47:34PM +0100, Wolfram Sang wrote: > This patch series converts the I2C subsystem to use the new API. Drivers > have been build tested. There is one user left in the SMBus part of the > core which will need a seperate series because all users of this > function need to be checked/converted, too. >=20 > Except for documentation patches, the conversion has been done with a > coccinelle script and further simplification have been applied when > proofreading the patches. >=20 > A branch is here: >=20 > git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git renesas/i2c/n= ew_client_device >=20 > Looking forward to comments... Thanks for all the quick reviews and tests \o/ Series applied to for-next, thanks! --oTHb8nViIGeoXxdp Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEOZGx6rniZ1Gk92RdFA3kzBSgKbYFAl4fbpAACgkQFA3kzBSg KbZsuxAAlGN3Qw/NoGCVgmD5F27FU32w32SIt3btqM+Smwb8h/YywvrdIxuaElC4 U0FVB9Nt21/V6whDPbpRqNwtf3Wld5jgpFt3GinATmO0LBrYZM0qsrAWaf9Mnnaw KgDuO5MOsyLhxxgsT7ak2ASe6o+QzDUOxtGJJLgjEUxAcdF7MEVinFLPA1qOgGlu qTPNb+z3htcdaoLIVBvUBzS6xIt8HyD2XB71db4C1TqBfdoWI/kRIWn5Fd0Bjiv4 EmUag6Gy7G0CTw0lzmYne+gSB/U8ugzpNDTWEyns4bxTVUGgyuAdWcPomJ9Duieq zA2yUvTbIX/L/smIXiJcXUOwgWiozVsY+oFpDp0lpg7ZaULiuCZbmcdbil6GRfqB qVfn8F94w1GRCQ5lNzMTuUbTIo/4w5HFMKQY23lJ8BMI26nVQ4+6YyUoZstLLyMA Np0s2EAUUGGO9IdMigfaJrVW7m0ukj1Je4S9a8OAE4eVuV89o1UjNdx0O7kV4BPI K0YpHnEvGaEiQB3MonKIE0jUL6WA1eXUUxsgQCBoXyPx9nmz5QzANoenIPmN8PBw sf8NAgK8ppLrkWjmbydI2GWMFFhp4gXdGFzvrjLahMNXZsHGLyK/ad9XS6+E54RD GynwEX6zU+0Znoa+3I2Po2bbPBRvuHSZqES3obLnS7x/VQ8Xz1w= =uUCI -----END PGP SIGNATURE----- --oTHb8nViIGeoXxdp--