mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
power: supply: max17042: fix OF node reference imbalance
The driver reuses the OF node of the parent multi-function device but
fails to take another reference to balance the one dropped by the
platform bus code when unbinding the MFD and deregistering the child
devices.
Fix this by using the intended helper for reusing OF nodes.
Fixes: 0cd4f1f77a ("power: supply: max17042: add platform driver variant")
Cc: stable@vger.kernel.org # 6.14
Cc: Dzmitry Sankouski <dsankouski@gmail.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://patch.msgid.link/20260407123338.2677375-1-johan@kernel.org
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
8eec545cde
commit
68d234144b
|
|
@ -1288,7 +1288,8 @@ static int max17042_platform_probe(struct platform_device *pdev)
|
|||
if (!i2c)
|
||||
return -EINVAL;
|
||||
|
||||
dev->of_node = dev->parent->of_node;
|
||||
device_set_of_node_from_dev(dev, dev->parent);
|
||||
|
||||
id = platform_get_device_id(pdev);
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user