From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 86BEF212566; Thu, 16 Oct 2025 15:56:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760630194; cv=none; b=tPCYCcIH+Ne1Fb5t40aEl1VQHWdnZpL2ROi4snBpFggXu3FR4FC2IFoiBrY1HnaIakk5h1fD5606eCJADRhr605CuOMQJQmTvX4dirm00zIHWKBzM39qlp18VdvFkq/IXXeOOMQWOfUq0wV4+OML6bR7oaupOMFb1H0X9RSmhCs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760630194; c=relaxed/simple; bh=7J3mPyENrGUlXA7yZTXeYzgwf+inJngs5n5bTexBVXI=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=AyuFuU3LgkTvqUry7G+2s8B9XqB4ph/fik3v2ZzAjpWPh2baktwZWfUie52ulvOW8rHv5NnUycg5xfNim00FLcaG2znb0aUosp9BPpEFrGsz4h/0GjB/yAffLQ5SZu34bQADxFA3LLgk8ohuUVofp54VjHouqX42RTtfAT7apHs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=V9qgMB13; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="V9qgMB13" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E7AFCC4CEF1; Thu, 16 Oct 2025 15:56:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1760630194; bh=7J3mPyENrGUlXA7yZTXeYzgwf+inJngs5n5bTexBVXI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=V9qgMB13VEnNwjl7EvA+dUgxyZwb2I4J4GgJ9nG/1ycwqkN32YffG/k2+5ICDR3LZ dCu1F3ZgzcZq9z96GHL0mELFPsrpYjqVgdxqcB0u4jUQqPxgZH4L1CtY+YY8KZYpyW uGGAHyxMur//cSRazS+TdB70EhjZFMMJo1T+g1Y2O7QzyCsfisv16TUjeY48ttMti3 Def3cM5sIaHTSHwK3JSo+9sFVcggrbU4CGYhBiwm7k5FhNOZ92JouSCITWmdodUeDp JzWXqiAOVhVcBbB5tiF+T9poiRPXNh/fcTluH7CIPtFGlCInUf+o2snbmSlhQVluO9 Pl1/cT8kUcnvA== Received: from johan by xi.lan with local (Exim 4.98.2) (envelope-from ) id 1v9QLE-000000007Qy-0TfP; Thu, 16 Oct 2025 17:56:36 +0200 Date: Thu, 16 Oct 2025 17:56:36 +0200 From: Johan Hovold To: linux-kernel@vger.kernel.org, Thomas Gleixner Cc: linux-tip-commits@vger.kernel.org, Florian Fainelli , Changhuang Liang , x86@kernel.org Subject: Re: [tip: irq/drivers] irqchip: Pass platform device to platform drivers Message-ID: References: <20251013094611.11745-12-johan@kernel.org> <176062960151.709179.10135307807179758941.tip-bot2@tip-bot2> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <176062960151.709179.10135307807179758941.tip-bot2@tip-bot2> On Thu, Oct 16, 2025 at 03:46:41PM -0000, tip-bot2 for Johan Hovold wrote: > The following commit has been merged into the irq/drivers branch of tip: > > Commit-ID: 9a1926893b68931e2d1dbadec9435a7efef92d76 > Gitweb: https://git.kernel.org/tip/9a1926893b68931e2d1dbadec9435a7efef92d76 > Author: Johan Hovold > AuthorDate: Mon, 13 Oct 2025 11:46:11 +02:00 > Committer: Thomas Gleixner > CommitterDate: Thu, 16 Oct 2025 17:26:34 +02:00 > > irqchip: Pass platform device to platform drivers > diff --git a/drivers/irqchip/irq-imx-mu-msi.c b/drivers/irqchip/irq-imx-mu-msi.c > index 41df168..2370ab6 100644 > --- a/drivers/irqchip/irq-imx-mu-msi.c > +++ b/drivers/irqchip/irq-imx-mu-msi.c > @@ -296,10 +296,9 @@ static const struct imx_mu_dcfg imx_mu_cfg_imx8ulp = { > }, > }; > > -static int imx_mu_of_init(struct device_node *dn, struct device_node *parent, > - const struct imx_mu_dcfg *cfg) > +static int imx_mu_of_probe(struct platform_device *pdev, struct device_node *parent, > + const struct imx_mu_dcfg *cfg) There's still an editing mistake here; the new name should just be 'imx_mu_probe'. Johan