Received: by 2002:a25:31c3:0:0:0:0:0 with SMTP id x186csp3694535ybx; Mon, 4 Nov 2019 01:11:13 -0800 (PST) X-Google-Smtp-Source: APXvYqxIN/+JVYcBwXG44A/t01wGEpdZVBzLlix7OKiQCkMjMPnUjlQKCJ/mKlzQN9oCjxfTtXKk X-Received: by 2002:a50:ac3c:: with SMTP id v57mr27510652edc.300.1572858673463; Mon, 04 Nov 2019 01:11:13 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1572858673; cv=none; d=google.com; s=arc-20160816; b=vmQw6V9QYcmt9zig+3yTScYh/Gxe0FsZ3mAnTlgCLqa7FBjyX2Z9Q5eD+FsrZuyuSF bR0jP9kBbj/hRTfEOECNJErU+vFzsTRXKeZl/h5N7iXDBLa6y0xg4z/nbq/GNzsXI3C0 YA3Gj2dbYO779gki6aie0x/HxBJO2k/tiBLI/lT/pm0Ql8XO4MaLMVMQaJlpPsTTnEcE ZnmvZRzk3rX1u4GdZHnVKQTE7AQnwO591Q9GuIY3zj/jF+LYMaqGA+Q/RUhqDUstU8a5 q62WGIVkCYuNoQD4xTSOE19nLA0EMw3QXYWfwFPu9BVXbpRO2+wS2yIBFJRVFo/i6zV4 gIfw== 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=LyEmnNmW06mmwO0PU+lcFZ5LrLBsdYfH3ctTUm5+HMU=; b=Sk76G4yIX6sRXcbCdSbHUKK2lYzB7tqIpc+3KcccIXZlan8sMD9FPjA+nTeHofgfTE H4HbinD+1JVa65hYfK0F5j62ffKClEY7D5NFe66swZkjLJTwjKYKW8x1NqiNQFP3bNag 2CTeeJrQDyblyJH6IsGLND1upaXZxzzQFSMPcgN/aj5wE69Qha7Vv2oQV2l4hSmrJzvY MWIk3ptETHbkt4ZBWmRjR0LqdLqDU0NU48IsfJJhqwrngGKE0buj8qAwdPTA74vXnU3Z V2HBLKSx1yehWGozUcjQ+GbsHqfgdbbcZtAAXubn63cJGCsJZQ64xfwWOVbfOyOx7Fx7 6T0w== 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 d34si6705710eda.268.2019.11.04.01.10.50; Mon, 04 Nov 2019 01:11:13 -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 S1728281AbfKDJJu (ORCPT + 99 others); Mon, 4 Nov 2019 04:09:50 -0500 Received: from jabberwock.ucw.cz ([46.255.230.98]:33300 "EHLO jabberwock.ucw.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726526AbfKDJJu (ORCPT ); Mon, 4 Nov 2019 04:09:50 -0500 Received: by jabberwock.ucw.cz (Postfix, from userid 1017) id 9DB8E1C06CF; Mon, 4 Nov 2019 10:09:48 +0100 (CET) Date: Mon, 4 Nov 2019 10:09:48 +0100 From: Pavel Machek To: Stephen Boyd Cc: linux-kernel@vger.kernel.org, Arnd Bergmann , Geert Uytterhoeven , Riku Voipio , Rob Herring , Frank Rowand , Jacek Anaszewski , Dan Murphy , linux-leds@vger.kernel.org Subject: Re: [PATCH 01/10] leds: pca953x: Use of_device_get_match_data() Message-ID: <20191104090948.GH12355@duo.ucw.cz> References: <20191004214334.149976-1-swboyd@chromium.org> <20191004214334.149976-2-swboyd@chromium.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tT3UgwmDxwvOMqfu" Content-Disposition: inline In-Reply-To: <20191004214334.149976-2-swboyd@chromium.org> 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 --tT3UgwmDxwvOMqfu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! > This driver can use the of_device_get_match_data() API to simplify the > code. Replace calls to of_match_device() with this newer API under the > assumption that where it is called will be when we know the device is > backed by a DT node. This nicely avoids referencing the match table when > it is undefined with configurations where CONFIG_OF=3Dn. > Please ack or pick for immediate merge so the last patch can be merged. I see nothing obviously wrong, so... Acked-by: Pavel Machek =2E.. but it did not apply on top of leds-next tree. Best regards, Pavel --=20 (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blo= g.html --tT3UgwmDxwvOMqfu Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABECAB0WIQRPfPO7r0eAhk010v0w5/Bqldv68gUCXb/q3AAKCRAw5/Bqldv6 8s7OAJ9ckVxuB03nzIBp5YGyOjKGWbJUbwCbBI3dtPnhr0M5qongHi/gtWVsHX0= =+nqt -----END PGP SIGNATURE----- --tT3UgwmDxwvOMqfu--