Re: [PATCH net-next] nfc: mrvl: use scoped device node handling to simplify cleanup

From: Jakub Kicinski
Date: Thu Aug 15 2024 - 22:09:34 EST


On Tue, 13 Aug 2024 12:39:04 +0200 Krzysztof Kozlowski wrote:
> - matched_node = of_get_compatible_child(node, "marvell,nfc-uart");
> + struct device_node *matched_node __free(device_node) = of_get_compatible_child(node,
> + "marvell,nfc-uart");

The 100+ character line mixing declaration and code is more than
I can bear. Sorry.