summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>2025-12-24 15:44:35 +0300
committerUlf Hansson <ulf.hansson@linaro.org>2026-02-23 14:06:53 +0300
commit6fba00c98eb9da19118f4d1f50fe0d790ef79341 (patch)
treea245a57fb530f8931a612d0a1dff8ec5c6b20723
parentf6b3889812e4f37fe5f1eeca9741eb7d7e39a764 (diff)
downloadlinux-6fba00c98eb9da19118f4d1f50fe0d790ef79341.tar.xz
mmc: sdhci-of-aspeed: Simplify with scoped for each OF child loop
Use scoped for-each loop when iterating over device nodes to make code a bit simpler. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r--drivers/mmc/host/sdhci-of-aspeed.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mmc/host/sdhci-of-aspeed.c b/drivers/mmc/host/sdhci-of-aspeed.c
index ca97b01996b1..4296def69436 100644
--- a/drivers/mmc/host/sdhci-of-aspeed.c
+++ b/drivers/mmc/host/sdhci-of-aspeed.c
@@ -519,7 +519,7 @@ static struct platform_driver aspeed_sdhci_driver = {
static int aspeed_sdc_probe(struct platform_device *pdev)
{
- struct device_node *parent, *child;
+ struct device_node *parent;
struct aspeed_sdc *sdc;
int ret;
@@ -548,12 +548,11 @@ static int aspeed_sdc_probe(struct platform_device *pdev)
dev_set_drvdata(&pdev->dev, sdc);
parent = pdev->dev.of_node;
- for_each_available_child_of_node(parent, child) {
+ for_each_available_child_of_node_scoped(parent, child) {
struct platform_device *cpdev;
cpdev = of_platform_device_create(child, NULL, &pdev->dev);
if (!cpdev) {
- of_node_put(child);
ret = -ENODEV;
goto err_clk;
}