[PATCH] Replace of_node_put() with new cleanup feature

From: Xiaxi Shen
Date: Tue Apr 23 2024 - 17:32:43 EST


Use the new cleanup magic to replace of_node_put() with
__free(device_node) marking to auto release and to simplify the error
paths

Suggested-by: Julia Lawall <julia.lawall@xxxxxxxx>
Signed-off-by: Xiaxi Shen <shenxiaxi26@xxxxxxxxx>
---
arch/x86/platform/olpc/olpc.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/x86/platform/olpc/olpc.c b/arch/x86/platform/olpc/olpc.c
index 1d4a00e767ec..66c4d1f888e7 100644
--- a/arch/x86/platform/olpc/olpc.c
+++ b/arch/x86/platform/olpc/olpc.c
@@ -202,7 +202,7 @@ static u32 __init get_board_revision(struct device_node *root)

static bool __init platform_detect(void)
{
- struct device_node *root = of_find_node_by_path("/");
+ struct device_node *root __free(device_node) = of_find_node_by_path("/");
bool success;

if (!root)
@@ -218,7 +218,6 @@ static bool __init platform_detect(void)
olpc_platform_info.boardrev >> 4);
}

- of_node_put(root);
return success;
}

--
2.34.1