Commit 1027a42c authored by Daniel González Cabanelas's avatar Daniel González Cabanelas Committed by Sebastian Reichel
Browse files

power: reset: linkstation-poweroff: add missing put_device()



The of_mdio_find_bus() takes a reference to the underlying device
structure, we should release that reference using a put_device() call.

Signed-off-by: default avatarDaniel González Cabanelas <dgcbueu@gmail.com>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent 5c8fe583
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -113,6 +113,7 @@ static int __init linkstation_poweroff_init(void)
		return -EPROBE_DEFER;

	phydev = phy_find_first(bus);
	put_device(&bus->dev);
	if (!phydev)
		return -EPROBE_DEFER;