From patchwork Sat Jan 4 22:27:39 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kory Maincent X-Patchwork-Id: 13926393 X-Patchwork-Delegate: kuba@kernel.org Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) (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 260571DAC95; Sat, 4 Jan 2025 22:29:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.194 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736029744; cv=none; b=bCHM7/92uLMOY/1cJP/fNEvusrAZNYoRoww9DPM5TEEREwBW6LKLrJCrB4B10bS+57qxdfjwag7tL5OwMzkPHwwXiyfishU7lslBdwj4Ozdw61xSjqq0xqYJfpru8AMSD3vVMfo+NuYudR12FEoI9dUJpryGXikbQAs+fJiXvdo= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736029744; c=relaxed/simple; bh=RZuO1r59PlVkQGPxJghut1VS50guz4rBU7rH1G5gD3Y=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=oofCGGdG8ibdR3yDRGWjqnvr3BnrXxotPsP6Ho3H2ZhvB56Setr+uVIt5X+a+btSOricE0BXbJ0REKVg6YmYqIpr0NAhA2rqnxHnL6r+hz3W880cOZ4F67aNSASvtTHaA4lV3UwwqUtHCoohREJgVaEoQJ6mjs5Fx1dn5m3MovU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=ntI4SQGE; arc=none smtp.client-ip=217.70.183.194 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="ntI4SQGE" Received: by mail.gandi.net (Postfix) with ESMTPSA id BC6AE40004; Sat, 4 Jan 2025 22:28:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1736029740; h=from:from: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=4uU/plfv/Hiqay0ydln3tGT/UUrhcCr+rBb47n8URIY=; b=ntI4SQGE1+dFIpdZBkaWD//vvYt0+yLqNzT7sI3FaQ19q5/gn0RDGTvwX3EYwFNS3Cxcpj HZ8dtY0Z1TCVZnsx4XUaZBmuydBUhvsDLNF5XyIZCTFgZINc+cbyZqbj86Ff/tqKysVxTM VOTDLTnqafi4RvkwzxKTs4/iPovowXOypm6gUp7BvYdFRHQ4Aztpgxii9hjnEyOhVBfdFE q00UY2cseV5oqMVtw8xABwMhZar6dHLKDmfmJHKSbd7STztEuqcizscbzufFQbf6VRliSn CCxFj+JzbJ56d0wqCMivUCPvPKVEcy4rSa/mpIvdchwTrTK14y4v31ujw8WAjg== From: Kory Maincent Date: Sat, 04 Jan 2025 23:27:39 +0100 Subject: [PATCH net-next 14/14] net: pse-pd: Fix missing PI of_node description Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20250104-b4-feature_poe_arrange-v1-14-92f804bd74ed@bootlin.com> References: <20250104-b4-feature_poe_arrange-v1-0-92f804bd74ed@bootlin.com> In-Reply-To: <20250104-b4-feature_poe_arrange-v1-0-92f804bd74ed@bootlin.com> To: Oleksij Rempel , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , Donald Hunter , Jonathan Corbet , Liam Girdwood , Mark Brown Cc: Thomas Petazzoni , linux-kernel@vger.kernel.org, netdev@vger.kernel.org, linux-doc@vger.kernel.org, Kyle Swenson , Dent Project , kernel@pengutronix.de, Maxime Chevallier , Kory Maincent X-Mailer: b4 0.15-dev-8cb71 X-GND-Sasl: kory.maincent@bootlin.com X-Patchwork-Delegate: kuba@kernel.org From: Kory Maincent (Dent Project) The PI of_node was not assigned in the regulator_config structure, leading to failures in resolving the correct supply when different power supplies are assigned to multiple PIs of a PSE controller. This fix ensures that the of_node is properly set in the regulator_config, allowing accurate supply resolution for each PI. Acked-by: Oleksij Rempel Signed-off-by: Kory Maincent --- drivers/net/pse-pd/pse_core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/pse-pd/pse_core.c b/drivers/net/pse-pd/pse_core.c index 830e8d567d4d..be56b3f5425c 100644 --- a/drivers/net/pse-pd/pse_core.c +++ b/drivers/net/pse-pd/pse_core.c @@ -423,6 +423,7 @@ devm_pse_pi_regulator_register(struct pse_controller_dev *pcdev, rconfig.dev = pcdev->dev; rconfig.driver_data = pcdev; rconfig.init_data = rinit_data; + rconfig.of_node = pcdev->pi[id].np; rdev = devm_regulator_register(pcdev->dev, rdesc, &rconfig); if (IS_ERR(rdev)) {