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 CF78C770E5 for ; Thu, 18 Jul 2024 21:02:20 +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=1721336540; cv=none; b=ih/oXVeGKO24Q43cz97OQneIu5IejUelbh0CQf8XQ50MfSlIxSMhkiF06PQWjtw5GsDpFJIHcPi4FORfhgy1t5lBmgQsryxs52FxkaG7iX1dIEwLIYYYhlSWhoDUt+X5fOC4Xj+tAbVAx34kc4dMIUTbG/vOxSm7B5He1P+1HQo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721336540; c=relaxed/simple; bh=etln5i+KCjKXeiB4Ai0inUgrjSIg3MBG9s2YE267C/g=; h=Message-ID:Content-Type:MIME-Version:In-Reply-To:References: Subject:From:Cc:To:Date; b=IQYNI8y3Rsq8+aXXeT/4XwjA+ZUHWSNYtHYzK/cU8jPETJ5QTVBxiYmMAk7w3OZhkcvAlmKVIcx0Aawd3QNOJTEXBjMiJyYzez/MXBkesgwmk58WJ41g/RocQQTBgqe21B3V1z2Jnhmy6gvaQHqGsd4pYAGWJAzU8uFiySfnUAU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=B6dzLEk9; 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="B6dzLEk9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5FCFBC116B1; Thu, 18 Jul 2024 21:02:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1721336540; bh=etln5i+KCjKXeiB4Ai0inUgrjSIg3MBG9s2YE267C/g=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=B6dzLEk9fzW4cVPkQHBA1j9ell0gg44uGRdPFSW/xrBk5bE8nlD2WmwUQhpy5PecP FcWxX1thkhKi0Hda4ZEsmZVmKIn+dtAZZB7Uyo5rjpena53TgvpLVuSbt69Otfv09Y BxO1tUySrvanCEzBtMrtMJapDPNA8CltLkbGHdYs1mmaeRInzTRvVh2Lhe3I0JgWQP eK4q/GmE8uGy/1VmcYsdVZl6fbctMo7HoID84l8E50EdQLDjXyXVHyPoAihcg6WWNS yPrUisr+g/q34d7xW/JZsEDHkNzlM/EZ88xU2c7RxGtCeS6C15yj5MzJG4F1b4Cgw+ pAvkHcH5pUsVg== Message-ID: Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20240522-topic-spmi_multi_master_irqfix-v2-1-7ec92a862b9f@linaro.org> References: <20240522-topic-spmi_multi_master_irqfix-v2-1-7ec92a862b9f@linaro.org> Subject: Re: [PATCH v2] spmi: pmic-arb: Pass the correct of_node to irq_domain_add_tree From: Stephen Boyd Cc: Bjorn Andersson , Dmitry Baryshkov , Abel Vesa , linux-kernel@vger.kernel.org, Konrad Dybcio To: Konrad Dybcio Date: Thu, 18 Jul 2024 14:02:18 -0700 User-Agent: alot/0.10 Quoting Konrad Dybcio (2024-05-22 11:08:17) > Currently, irqchips for all of the subnodes (which represent a given > bus master) point to the parent wrapper node. This is no bueno, as > no interrupts arrive, ever (because nothing references that node). >=20 > Fix that by passing a reference to the respective master's of_node. >=20 > Worth noting, this is a NOP for devices with only a single master > described. >=20 > Signed-off-by: Konrad Dybcio > --- Applied to spmi-next