From nobody Sun Apr 26 23:00:44 2026 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 6870EC43334 for ; Tue, 21 Jun 2022 16:13:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1353909AbiFUQNu (ORCPT ); Tue, 21 Jun 2022 12:13:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35280 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1354146AbiFUQNh (ORCPT ); Tue, 21 Jun 2022 12:13:37 -0400 Received: from smtpbg.qq.com (smtpbg139.qq.com [175.27.65.136]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 14B3D6571; Tue, 21 Jun 2022 09:13:32 -0700 (PDT) X-QQ-mid: bizesmtp71t1655828007t8vpf67v Received: from ubuntu.localdomain ( [106.117.99.68]) by bizesmtp.qq.com (ESMTP) with id ; Wed, 22 Jun 2022 00:13:24 +0800 (CST) X-QQ-SSF: 0100000000700090B000B00A0000000 X-QQ-FEAT: kx8LQfRSHcHF5JzcuCS9S4UVM7t1hm1fZBjnpoMwStvQtf9I7TtB2rx9ZZGe2 gzNsqLnzf1x4I8y/0lW4JSw19IUO4Oi6VWmphARxZ21mQzSBq3Xj/FrsOxXtnB6rOT+zKyy AeLeD1GIk08uN1HDav4ayVTtzrrB+wnXj6zcc5VJiWDkH11Hb54ET74p1HBvqnLzBgY3NuA bxrHIJqiPejTYpy0xmZSXolAckexncXiK9LIPCPzRmd7kXJZMb6YO+Z25VTPJp/x/DxSHsk zNOxU5Y0a/5ZT3hwnj34jkoDv54Ndg6X/CtxwIxIAyj/Rpmh8Io6bqdB8Eg10y3sFRL2Ufb zX78WTG X-QQ-GoodBg: 0 From: Jiang Jian To: robh+dt@kernel.org, frowand.list@gmail.com Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Jiang Jian Subject: [PATCH] of: base: Remove duplicate 'of' in two places. Date: Wed, 22 Jun 2022 00:13:22 +0800 Message-Id: <20220621161322.17739-1-jiangjian@cdjrlc.com> X-Mailer: git-send-email 2.17.1 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybgspam:qybgspam6 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" file: drivers/of/base.c line: 1152,1177 * @matches: array of of device match structures to search in changed to * @matches: array of device match structures to search in Signed-off-by: Jiang Jian Reviewed-by: Frank Rowand --- drivers/of/base.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/of/base.c b/drivers/of/base.c index d4f98c8469ed..f738939cd283 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -1149,7 +1149,7 @@ const struct of_device_id *__of_match_node(const stru= ct of_device_id *matches, =20 /** * of_match_node - Tell if a device_node has a matching of_match structure - * @matches: array of of device match structures to search in + * @matches: array of device match structures to search in * @node: the of device structure to match against * * Low level utility function used by device matching. @@ -1174,7 +1174,7 @@ EXPORT_SYMBOL(of_match_node); * you pass will not be searched, only the next one * will; typically, you pass what the previous call * returned. of_node_put() will be called on it - * @matches: array of of device match structures to search in + * @matches: array of device match structures to search in * @match: Updated to point at the matches entry which matched * * Return: A node pointer with refcount incremented, use --=20 2.17.1