Skip to content

Commit d62e7fb

Browse files
mkresinlinusw
authored andcommitted
pinctrl: falcon: fix syntax error
Add the missing semicolon after of_node_put to get the file compiled. Fixes: f17d2f5 ("pinctrl: falcon: Add of_node_put() before return") Cc: [email protected] # v5.4+ Signed-off-by: Mathias Kresin <[email protected]> Link: https://lore.kernel.org/r/[email protected] Acked-by: Thomas Langer <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent f983714 commit d62e7fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/pinctrl-falcon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ static int pinctrl_falcon_probe(struct platform_device *pdev)
451451
falcon_info.clk[*bank] = clk_get(&ppdev->dev, NULL);
452452
if (IS_ERR(falcon_info.clk[*bank])) {
453453
dev_err(&ppdev->dev, "failed to get clock\n");
454-
of_node_put(np)
454+
of_node_put(np);
455455
return PTR_ERR(falcon_info.clk[*bank]);
456456
}
457457
falcon_info.membase[*bank] = devm_ioremap_resource(&pdev->dev,

0 commit comments

Comments
 (0)