Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp4245605ybc; Fri, 15 Nov 2019 01:12:34 -0800 (PST) X-Google-Smtp-Source: APXvYqyprgjuOxMm3Bmq5GaArXbfudC2tijkPlFo3lKYvTYzmLE6OL1F3hEdCzCkgAW5ImQZIaBf X-Received: by 2002:adf:ec4b:: with SMTP id w11mr13488670wrn.243.1573809154532; Fri, 15 Nov 2019 01:12:34 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1573809154; cv=none; d=google.com; s=arc-20160816; b=QEnDSMbjs7Eog4kt8V2iOwCoetrdfialoeTasD8ERvCFwIp8Cd9Q1EVDRJ1GNR54tW jjjTY1OurSs7YGwYjNk+9f8k+bDbBPU0Q8gkCpcwG2Y3RLFtTMYGueOlB1afCko/pVhV nxwPiFBEZ3BU/0nzMuxWUsBb6Nn/aO26P+RAJY4nftsAzVNp0cQavvvY/bkQA5v5D8RA 9IieTBUqUek1AbdblF1orRH3KDyUs5R+JBuGSwTbiz3Sf5nqcR4vKkkrSq/rLL1aI7D/ fhNNfmEToI+LIi2iStYjqK1ChhB0BmF0Eb5pIPZ8pQTMtWZQwJlrcB/ZsoTzA7U9aSzF eeNw== 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=vHEe9h/4nl90KpG69kS+K3QIRXN9jksliCgUhdDMmX8=; b=colvuFj9sCVVKQk1XmUOYXCv7CTPj6fWGNwzBWxZEW3EBNMBcDO8lsvZsiuHANpnib 2woh2P3Trzl4kcPvBgsRjRkxLu2U56TQv/tiLq/TXDMlwS5SlsSC6AdrMpRaUMIrNaZx gz99bQUpFC4QxTqbFnSazfNOKEDCSxxpRHnOW7iEBA3yMOupN6lpVUEqmT3UUlnFQYYj jkhHjn7hO+Gxw7Hd9zTnmSHv0PbKCSlc1tcdGyAnsKaKupAMYfP3h89ShD+bhK6U1iAP JCxHSMGMKuvumDZHIDqYNFWSMqZSU9gX2jywA8WOqpDfhUQ9sNT39zvTQrCMqi3Jobtw /HIg== 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 l1si3486177edw.274.2019.11.15.01.12.08; Fri, 15 Nov 2019 01:12:34 -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 S1727073AbfKOJKj (ORCPT + 99 others); Fri, 15 Nov 2019 04:10:39 -0500 Received: from sauhun.de ([88.99.104.3]:56592 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725829AbfKOJKj (ORCPT ); Fri, 15 Nov 2019 04:10:39 -0500 Received: from localhost (p54B33606.dip0.t-ipconnect.de [84.179.54.6]) by pokefinder.org (Postfix) with ESMTPSA id 6C5462C03E3; Fri, 15 Nov 2019 10:10:36 +0100 (CET) Date: Fri, 15 Nov 2019 10:10:36 +0100 From: Wolfram Sang To: Greg Kroah-Hartman Cc: Saravana Kannan , kernel-team@android.com, linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v1] i2c: of: Populate fwnode in of_i2c_get_board_info() Message-ID: <20191115091035.GA2227@kunai> References: <20191115045049.261104-1-saravanak@google.com> <20191115053201.GA800105@kroah.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <20191115053201.GA800105@kroah.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 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Nov 15, 2019 at 01:32:01PM +0800, Greg Kroah-Hartman wrote: > On Thu, Nov 14, 2019 at 08:50:48PM -0800, Saravana Kannan wrote: > > This allows the of_devlink feature to work across i2c devices too. This > > avoid unnecessary probe deferrals of i2c devices, defers consumers of > > i2c devices till the i2c devices probe, and allows i2c drivers to > > implement sync_state() callbacks. > >=20 > > Cc: Greg Kroah-Hartman > > Signed-off-by: Saravana Kannan > > --- > > The of_devlink feature is present in driver-core-next branch. It started > > off with [1] but it has been improving since then. > >=20 > > [1] -- https://lore.kernel.org/linux-acpi/20190904211126.47518-1-sarava= nak@google.com/ > >=20 > > drivers/i2c/i2c-core-of.c | 1 + > > 1 file changed, 1 insertion(+) >=20 > Wolfram, I can take this through my tree now if you have no objections > to this. What would be the advantage? I can also apply it today if you ack it. --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEOZGx6rniZ1Gk92RdFA3kzBSgKbYFAl3Oa4cACgkQFA3kzBSg KbaZMhAAh1UZSZZXjji5ZsU0sxQOpgTLqO0m8PDgaHqtoQ8ASGngmutKDq6R9v8M 6ChpmmIfUHgIFdqta87XH/xhnjpP94TAr0XdIl8Aryjj2xg8+pdUOwNpxofuQmQ+ TG7gzSlRI2MAN2+nyiaObD42FlZrOoNjiwL2nZySsPlWRoIGdfT7CO0zX41qp16l f4E01AhfO6Irb94O1GJXtg3/EKoN91K7B25+BhXiCiv8PE0+MFZzWZ6BprKZCpae oy1pHgQpJbZJM1GvPEdXTfBQu5HHDxlnL50d1auAsJaTMcch0p4nTFKmTqg+tW0N 7szlGfwVyVBnGatSCqwZrX8GALU+7pPPDMx5KT+sh6M/a28+G2qFX/3HrATRQvat omMHQkVtvNll2OZzo9EWIaWvElLqay1hpTzdO5Anbwj4/6fKUWgGwj+/TF0xkj06 xA+nLKOn3kEcO8xoBCduWvShvmQDUADnVNXj6dbM6XyF/WmRH4dEcrgItcoUjqfn tsF1lmSlJIHlzrUwQ77BsJj1ZTziwnwrj+aBQkqmRUYw3K+qJrmJAAyfqvoPYcT4 uh4U2sSxAw5s1TuzZFRqDY4drnQ6Spooquq6BE6CL21yqURKfENUiF63BUrMVobp vAwaflgkzGCP7XtJMRP86uFd2a9gtdSTjiLA3A54Qd/gmx5FJoM= =PpDn -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO--