From nobody Mon Jun 29 13:49:42 2026 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 80C56C433EF for ; Wed, 9 Feb 2022 16:18:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236732AbiBIQSP (ORCPT ); Wed, 9 Feb 2022 11:18:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49696 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236165AbiBIQRx (ORCPT ); Wed, 9 Feb 2022 11:17:53 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 13919C061355 for ; Wed, 9 Feb 2022 08:17:57 -0800 (PST) Date: Wed, 09 Feb 2022 16:17:54 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1644423475; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JE16wGRtYe7FISUqG//zgKuNklCMDzWrauzxs0rZDeE=; b=a7bNXodLZBY0XTAFO2Pk0kOXqzXzN8+GElxj2J8t2c5ETZaMvtbl73CC7omWAt2Za0vso4 krwyqBfbkmeTq4YRP1D7GJDofqauH/o0/Nmr3o3UkSmIq7CjEgh1Fgh2LG6G6JqETJMCJc gM2FxnrF1NQbDTAGyr8YBnt9ZnELWfFxAep0d3jOvbjrroG2PAlsQ75bc0mn3VjvwFrDC9 z6e2/mcPx7QFyN5Y3rcXGDsI7FLD74kkfWWj//YaeOQn/hkVBZleunKOvxc//6BuZVqAYk Wkini0YthKNhedBJNd0ufanOiu0EaBIA+9smB7N6pI/aqJ+A9wiTz1XFfA8/ag== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1644423475; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JE16wGRtYe7FISUqG//zgKuNklCMDzWrauzxs0rZDeE=; b=QhgtXq8VKHp1Jx1ZP2Ervaj8PVD+hsqBeYaKnSZrqPHA9cBLXphlzgujMSdF0k2MuLOv3Z ewsTOj5zJGdWQbAA== From: "irqchip-bot for Marc Zyngier" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-kernel@vger.kernel.org Subject: [irqchip: irq/irqchip-next] gpio: rcar: Move PM device over to irq domain Cc: Marc Zyngier , Geert Uytterhoeven , Bartosz Golaszewski , tglx@linutronix.de In-Reply-To: <20220201120310.878267-9-maz@kernel.org> References: <20220201120310.878267-9-maz@kernel.org> MIME-Version: 1.0 Message-ID: <164442347471.16921.3227595274290721969.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the irq/irqchip-next branch of ir= qchip: Commit-ID: 373d664b7d3babe1743f64746bc3c553ac23a1bd Gitweb: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-plat= forms/373d664b7d3babe1743f64746bc3c553ac23a1bd Author: Marc Zyngier AuthorDate: Tue, 01 Feb 2022 12:03:06=20 Committer: Marc Zyngier CommitterDate: Wed, 09 Feb 2022 13:36:53=20 gpio: rcar: Move PM device over to irq domain Move the reference to the device over to the irq domain. Signed-off-by: Marc Zyngier Reviewed-by: Geert Uytterhoeven Tested-by: Geert Uytterhoeven Acked-by: Bartosz Golaszewski Link: https://lore.kernel.org/r/20220201120310.878267-9-maz@kernel.org --- drivers/gpio/gpio-rcar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpio/gpio-rcar.c b/drivers/gpio/gpio-rcar.c index bd2e16d..3a76538 100644 --- a/drivers/gpio/gpio-rcar.c +++ b/drivers/gpio/gpio-rcar.c @@ -530,7 +530,6 @@ static int gpio_rcar_probe(struct platform_device *pdev) =20 irq_chip =3D &p->irq_chip; irq_chip->name =3D "gpio-rcar"; - irq_chip->parent_device =3D dev; irq_chip->irq_mask =3D gpio_rcar_irq_disable; irq_chip->irq_unmask =3D gpio_rcar_irq_enable; irq_chip->irq_set_type =3D gpio_rcar_irq_set_type; @@ -552,6 +551,7 @@ static int gpio_rcar_probe(struct platform_device *pdev) goto err0; } =20 + irq_domain_set_pm_device(gpio_chip->irq.domain, dev); ret =3D devm_request_irq(dev, p->irq_parent, gpio_rcar_irq_handler, IRQF_SHARED, name, p); if (ret) {