Commit cbb13dce authored by Takashi Sakamoto's avatar Takashi Sakamoto
Browse files

firewire: ohci: use return value from fw_node_get()

The programming pattern, referring after increasing reference count, is
supported by fw_node_get().

This commit simplify the programming pattern.

Link: https://lore.kernel.org/r/20250908012108.514698-4-o-takashi@sakamocchi.jp


Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
parent c908e072
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -306,8 +306,7 @@ static void bm_work(struct work_struct *work)

	generation = card->generation;

	root_node = card->root_node;
	fw_node_get(root_node);
	root_node = fw_node_get(card->root_node);
	root_device = root_node->data;
	root_device_is_running = root_device &&
			atomic_read(&root_device->state) == FW_DEVICE_RUNNING;