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 AB6C6C00A8F for ; Tue, 24 Oct 2023 01:58:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231916AbjJXB61 (ORCPT ); Mon, 23 Oct 2023 21:58:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48716 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230373AbjJXB60 (ORCPT ); Mon, 23 Oct 2023 21:58:26 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C9D9910C1; Mon, 23 Oct 2023 18:58:24 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6459FC433C8; Tue, 24 Oct 2023 01:58:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1698112704; bh=0qPvKrMGMfZJEWgqaG8R72MpPExmTFSPFWOeP3WWhgw=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=IT1HXDgq0XtDq6YeFjT29pGF7O8E8r7nxnJcaci5IsJ1IujeiyK9Xhc/AUhV0mC9z E/S9H3/uhM78YDxpFxzkArE8vA0NGdNdcMRaDiaMiyUw9nWUD9936+eK0vEeVjxw5e KysgTUlSPcIu+SOQuHyocoJZ3APBAcG7wq0vuE153+QOKWQScETe2qplQEUiMVEfEj AQMS29KHFYRL4xiEEBgsDJ4BoNO6yALbAgFC3TSLmldXD1xnlmJj2Xp96vr+/Elqv3 iHmGxVsLdNptw9SN9mtHMr7588b1hkzjZrda0F0fLp4SBu4Zf1CVKm+68T4lCAJnK3 Wp+zjVhZPxmOQ== Message-ID: <083fc8d9c3f7f72f05e1d668ccd553f4.sboyd@kernel.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20231003152927.15000-6-johan+linaro@kernel.org> References: <20231003152927.15000-1-johan+linaro@kernel.org> <20231003152927.15000-6-johan+linaro@kernel.org> Subject: Re: [PATCH 5/5] spmi: rename spmi device lookup helper From: Stephen Boyd Cc: Andy Gross , Bjorn Andersson , Konrad Dybcio , Caleb Connolly , linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, Johan Hovold To: Johan Hovold , Lee Jones Date: Mon, 23 Oct 2023 18:58:22 -0700 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Quoting Johan Hovold (2023-10-03 08:29:27) > Rename the SPMI device helper which is used to lookup a device from its > OF node as spmi_find_device_by_of_node() so that it reflects the > implementation and matches how other helpers like this are named. >=20 > This will specifically make it more clear that this is a lookup function > which returns a reference counted structure. >=20 > Signed-off-by: Johan Hovold > --- Acked-by: Stephen Boyd