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 73A76C433EF for ; Sun, 27 Feb 2022 12:34:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230114AbiB0MfO (ORCPT ); Sun, 27 Feb 2022 07:35:14 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60626 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229446AbiB0MfM (ORCPT ); Sun, 27 Feb 2022 07:35:12 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 59E3F5F4FC; Sun, 27 Feb 2022 04:34:36 -0800 (PST) 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 0D3ECB80C6D; Sun, 27 Feb 2022 12:34:35 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8005AC340E9; Sun, 27 Feb 2022 12:34:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1645965273; bh=vd9yXUJzbfAqJNvLQ36xEL06P/YDGwf4z5Bmi1SooMg=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=fL8puGmU5pIMV7kzPIjuWYDn/T+26sQczTlq67IceZ4vpjtB5+YeeucZsX5AjNQrz BkZy5fem9/ie/TBF8tBhZgYSKKrMMvodYb2lnQsz9Fbl2xwuFBTRCxOJ+weh348vcu OIIPVK10WK2OogrgeXlI7jJkfgJ6sbX35LA23/ztm9d/oyiwKApoJE24jUru9EJtwm c9Whzi9QV6lqLKWEN9JdXk1siWDUIPyYO/WeNaVlxis/z5hNw4baqhaDCFwJUzoIVM exmf8lGHu4nAlul0IwmpLB7abja8pDh3kSyFQUJj8sMMnNGj/WCccBj8R5QRj1rF0Q PYftWF0JswJRg== Date: Sun, 27 Feb 2022 12:41:34 +0000 From: Jonathan Cameron To: Andy Shevchenko Cc: Puranjay Mohan , gregkh@linuxfoundation.org, rafael@kernel.org, heikki.krogerus@linux.intel.com, kuba@kernel.org, saravanak@google.com, linux-kernel@vger.kernel.org, lars@metafoo.de, Michael.Hennerich@analog.com, linux-iio@vger.kernel.org Subject: Re: [PATCH v2 2/2] iio: accel: adxl355: use fwnode_irq_get_byname() Message-ID: <20220227124134.4d4e4644@jic23-huawei> In-Reply-To: References: <20211109200840.135019-1-puranjay12@gmail.com> <20211109200840.135019-3-puranjay12@gmail.com> X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 1 Feb 2022 18:25:54 +0200 Andy Shevchenko wrote: > On Wed, Nov 10, 2021 at 01:38:40AM +0530, Puranjay Mohan wrote: > > Use the generic fwnode_irq_get_byname() in place of of_irq_get_byname() > > to get the IRQ number from the interrupt pin. > > Heads up, the fwnode_irq_get_byname() is in I2C tree and if Jonathan wants to > apply this one, the PR [1] can be used. > > [1]: https://lore.kernel.org/linux-i2c/YfRiGR3AT8tzyweG@shikoro/T/#u > Thanks Andy. I'm going to let this go the slow way and pick up this patch after the merge window when I can avoid pulling in that PR. Basically I'm feeling lazy today :) Jonathan