From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="u7K5xTvV" Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7EE34D5B; Fri, 17 Nov 2023 10:07:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:Cc:To:Subject:MIME-Version:Date: Message-ID:Sender:Reply-To:Content-ID:Content-Description; bh=CAyZaE4H4axmPE1h/br32nT1ap4ua7ua6LSLoIIXfxY=; b=u7K5xTvVRb73ZYsyfGIaz4AbGc RL2x5yzAFXGn5pJx7SZNKZi+yUT+cd97InufnHM/33KIwuv19UZE6NATItGdT+HF8yjkNdd828VS+ 2cTDuTPIpFPcWPevds2DwK5IRrGnNAI2Ns+HVeTR435sR33NqWIvJPNzQA7cG1b51jV+7rFgTZ+wQ zLUerwWnq2O5avaRy+os/EEivfUpQtGE5/G5ONcGDN8K1Q9ktmzdyvi+huH+00xogKODWIwSdSnLP q5OsJq+zSR7pTEQe9oFPReeHIKPNakGE7QTYA1M9vJiUHZ+DNPBdCmIV6yAesO1pY6IwFZjgDzh3x Vchk5yLg==; Received: from [50.53.46.231] (helo=[192.168.254.15]) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1r43G2-0074QE-0F; Fri, 17 Nov 2023 18:07:58 +0000 Message-ID: Date: Fri, 17 Nov 2023 10:07:57 -0800 Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] of: fix recursion typo in kernel doc Content-Language: en-US To: Johan Hovold , Rob Herring Cc: Frank Rowand , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org References: <20231117171628.20139-1-johan+linaro@kernel.org> From: Randy Dunlap In-Reply-To: <20231117171628.20139-1-johan+linaro@kernel.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 11/17/23 09:16, Johan Hovold wrote: > Fix a typo in the kernel doc for the of_platform_depopulate() functions, > which remove children "recursively". > > Signed-off-by: Johan Hovold Looks good. Thanks. 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, void *res, void *data) > * @dev: device that requested to depopulate from device tree data > * > * Complementary to devm_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). > */ -- ~Randy