From patchwork Sat Dec 18 16:52:55 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Prabhakar X-Patchwork-Id: 12696767 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 477B9C433F5 for ; Sat, 18 Dec 2021 16:54:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:List-Subscribe:List-Help: List-Post:List-Archive:List-Unsubscribe:List-Id:Message-Id:Date:Subject:Cc:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=EunFLBdq618NldOXCGaWZDAsazBnn4QXY26+IbzyqzQ=; b=jXcbLL0xgdStkR 3JCYpr6gr1TRsFVKuhBAFzjedrbJgrDUJoeWsNVb0t1V3HPidByA89Y5UvslyxyiyYtfIiE4yUImF bzojQyRS4chhVtzjvLsw4YwQc3OPWWeVWMkCCHGdXfP8xjQeErLnS0ByAj7Yex34rbD4lKAyzoyuO 4ikU7Bd33vffB6Vkp4XeUk6OdXqw5TZXMiZp37jhJBWZ5RlQDXPMKrwfhwneDKAglyhpdDHRLv2lw fWTpoKaYVqunhYwcME1vHPZDYPomH7JmrAhwrwCK0Lm52YQBn3AnA4xKObFZ69BrXp1rg4RKSSuuU fEb+1FO4XSUFza+BzFdA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mycxL-00EI4m-Dz; Sat, 18 Dec 2021 16:53:11 +0000 Received: from relmlor2.renesas.com ([210.160.252.172] helo=relmlie6.idc.renesas.com) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mycxH-00EI3z-EV; Sat, 18 Dec 2021 16:53:09 +0000 X-IronPort-AV: E=Sophos;i="5.88,216,1635174000"; d="scan'208";a="104388663" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie6.idc.renesas.com with ESMTP; 19 Dec 2021 01:53:05 +0900 Received: from localhost.localdomain (unknown [10.226.36.204]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 25B6B40A5168; Sun, 19 Dec 2021 01:53:01 +0900 (JST) From: Lad Prabhakar To: Rob Herring , Nicolas Saenz Julienne , Florian Fainelli , Ray Jui , Scott Branden , bcm-kernel-feedback-list@broadcom.com, Chris Brandt , Wolfram Sang Cc: linux-i2c@vger.kernel.org, linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Prabhakar , Lad Prabhakar Subject: [PATCH 0/3] i2c/busses: Use platform_get_irq/_optional() variants to fetch IRQ's Date: Sat, 18 Dec 2021 16:52:55 +0000 Message-Id: <20211218165258.16716-1-prabhakar.mahadev-lad.rj@bp.renesas.com> X-Mailer: git-send-email 2.17.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211218_085307_619627_6B14EE47 X-CRM114-Status: UNSURE ( 6.44 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi All, This patch series aims to drop using platform_get_resource() for IRQ types in preparation for removal of static setup of IRQ resource from DT core code. Dropping usage of platform_get_resource() was agreed based on the discussion [0]. [0] https://patchwork.kernel.org/project/linux-renesas-soc/ patch/20211209001056.29774-1-prabhakar.mahadev-lad.rj@bp.renesas.com/ Note: I have just build tested the patches. Cheers, Prabhakar Lad Prabhakar (3): i2c: bcm2835: Use platform_get_irq() to get the interrupt i2c: sh_mobile: Use platform_get_irq_optional() to get the interrupt i2c: riic: Use platform_get_irq() to get the interrupt drivers/i2c/busses/i2c-bcm2835.c | 11 +++------ drivers/i2c/busses/i2c-riic.c | 10 ++++---- drivers/i2c/busses/i2c-sh_mobile.c | 39 +++++++++++++++++++++++------- 3 files changed, 39 insertions(+), 21 deletions(-)