From nobody Tue Dec 30 08:00:13 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5B84EC197A0 for ; Fri, 17 Nov 2023 17:20:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346148AbjKQRUV (ORCPT ); Fri, 17 Nov 2023 12:20:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45132 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231545AbjKQRUT (ORCPT ); Fri, 17 Nov 2023 12:20:19 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 86269D79 for ; Fri, 17 Nov 2023 09:20:16 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2965FC433C7; Fri, 17 Nov 2023 17:20:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1700241616; bh=pT4H+8f476H52UEU9hpQ7SOhDZTw4TDB9JYhp+a1A9g=; h=From:To:Cc:Subject:Date:From; b=pt6wObhfMTV/kYZU1DOo+p424g21J9U41kwCZ4eeImde232ZgsYOb9j0+iH0xjpuL +rXv9GDzaa+SBNQ8w3AAXFOkmktloa16H/d11M3QC2WJvJntWJ69YnHpcIsuUUDdZA ehxkQmGcW6Zu6aaBACwac6DzcDdKyNUbvYn0sSDtCBddnAqYVB0aOi64eZICmHgHvL r+iAjvijI8vo6oeKL0QB18Cu0dQqcGSU3QwuF8NFSPhTCIdnz2jc+Y5wzCQKEdrYEF z23y0y0/9TaUMmVMVX7NcrDqK8SeawO8rNLH9C7szdjrpEN4pyqT8uKZMaxCgKMk7e YrWm0qq1NVThQ== Received: from johan by xi.lan with local (Exim 4.96.2) (envelope-from ) id 1r42Vv-0005My-2e; Fri, 17 Nov 2023 18:20:19 +0100 From: Johan Hovold To: Rob Herring Cc: Frank Rowand , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Johan Hovold Subject: [PATCH] of: fix recursion typo in kernel doc Date: Fri, 17 Nov 2023 18:16:28 +0100 Message-ID: <20231117171628.20139-1-johan+linaro@kernel.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Fix a typo in the kernel doc for the of_platform_depopulate() functions, which remove children "recursively". Signed-off-by: Johan Hovold Reviewed-by: Randy Dunlap --- drivers/of/platform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/of/platform.c b/drivers/of/platform.c index 126d265aa7d8..2293059758d1 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -668,7 +668,7 @@ EXPORT_SYMBOL_GPL(of_platform_device_destroy); * @parent: device which children will be removed * * Complementary to of_platform_populate(), this function removes children - * of the given device (and, recurrently, their children) that have been + * of the given device (and, recursively, their children) that have been * created from their respective device tree nodes (and only those, * leaving others - eg. manually created - unharmed). */ @@ -737,7 +737,7 @@ static int devm_of_platform_match(struct device *dev, v= oid *res, void *data) * @dev: device that requested to depopulate from device tree data * * Complementary to devm_of_platform_populate(), this function removes chi= ldren - * of the given device (and, recurrently, their children) that have been + * of the given device (and, recursively, their children) that have been * created from their respective device tree nodes (and only those, * leaving others - eg. manually created - unharmed). */ --=20 2.41.0