From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 607C4C433EF for ; Tue, 14 Jun 2022 08:41:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1353536AbiFNIlL (ORCPT ); Tue, 14 Jun 2022 04:41:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33198 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352827AbiFNIkw (ORCPT ); Tue, 14 Jun 2022 04:40:52 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0563F427D8; Tue, 14 Jun 2022 01:40:14 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id B48E2B817DB; Tue, 14 Jun 2022 08:40:12 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3FC2FC3411B; Tue, 14 Jun 2022 08:40:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655196011; bh=md/hhacy6Xjty9NLHaPlGwpLO6qKQ3qcDjhq4v/Auk0=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=iq7uZHjZcOJSfxTsPh+UwmlAkkNxiZt0WHrZKXauUcxQqVevfx8eBY/gYW1M8qtof lb2uTGspgRsZ/3BqExC7h3Kq0xOhtWD/U+zvNO3vnSLZMg4DvzWownaUZALTZ1ELFs atbe/al9tkdao6weGW9jvLjQAzSQntezaaQPu9VYYo5lczd9gxhcocCbZBQVYmXA55 9iOMVmBe0lcfF1m/NCeYKvRR7m0SVUcn4U/A9hEIHm80fETm2BK0HkMVsgD70Nokxk GeqerXzinCqYOruUxuHi2nYBa4eekLx2hkC++i6FsUqTXoy5usazeZI6uMQWpXX5jL ntRa4PDbJowlw== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220429220904.137297-2-caleb.connolly@linaro.org> References: <20220429220904.137297-1-caleb.connolly@linaro.org> <20220429220904.137297-2-caleb.connolly@linaro.org> Subject: Re: [PATCH v14 01/10] spmi: add a helper to look up an SPMI device from a device node From: Stephen Boyd Cc: Jami Kettunen , Sumit Semwal To: Andy Gross , Bjorn Andersson , Jonathan Cameron , Krzysztof Kozlowski , Lars-Peter Clausen , Lee Jones , Rob Herring , caleb.connolly@linaro.org, devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Date: Tue, 14 Jun 2022 01:40:09 -0700 User-Agent: alot/0.10 Message-Id: <20220614084011.3FC2FC3411B@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Quoting Caleb Connolly (2022-04-29 15:08:56) > The helper function spmi_device_from_of() takes a device node and > returns the SPMI device associated with it. > This is like of_find_device_by_node but for SPMI devices. >=20 > Signed-off-by: Caleb Connolly > --- Acked-by: Stephen Boyd