From nobody Mon Apr 13 12:10:19 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 76BC5C00140 for ; Wed, 10 Aug 2022 13:36:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232654AbiHJNfy (ORCPT ); Wed, 10 Aug 2022 09:35:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46062 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232852AbiHJNfl (ORCPT ); Wed, 10 Aug 2022 09:35:41 -0400 Received: from bg5.exmail.qq.com (bg4.exmail.qq.com [43.154.54.12]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D59D345070 for ; Wed, 10 Aug 2022 06:35:37 -0700 (PDT) X-QQ-mid: bizesmtp87t1660138534t671eein Received: from localhost.localdomain ( [182.148.14.53]) by bizesmtp.qq.com (ESMTP) with id ; Wed, 10 Aug 2022 21:35:32 +0800 (CST) X-QQ-SSF: 01000000002000B0D000B00A0000000 X-QQ-FEAT: YHTLUubWl24Slu4pVAID6bxJUflmsmt+JbUdJbjA0TwZHDJ+hVF/dgy7djQt8 zQ8R6YlY51wydDSXpBqU7MrNG4ng2aoBZbZIdHNpAAj3EaC+XxDzuqeF90Yb9TRkvK38S5p wwyxjOafxM7wr33uxjAPpkQzYdTUn3iMcbFg2R+hhvQmgqNVFy4RS2+qJZD4sKUHHwniD9A ATMK2tptX7EwlqhfFUfwZieEoiBlJevNeEqvQARWx5uBQeTCB7EMgxCu2DRKCFHvuAXBISy M3EDxH6CaV1p5YzYIkg37IaMSpUqS32NSgUkZFcLP3z8e0KUpXxkfwI9RBOLCoE949aLGbx 3Ksscsn0pvTzwKw+meqSYguo3swl9lXjZrR2JqzkfpUKPWtTw98Rbc+XFuKls5pCO05/Tyx X-QQ-GoodBg: 0 From: Jilin Yuan To: miquel.raynal@bootlin.com, vigneshr@ti.com Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, Jilin Yuan Subject: [PATCH] mtd/ubi: fix repeated words in comments Date: Wed, 10 Aug 2022 21:35:26 +0800 Message-Id: <20220810133526.2958-1-yuanjilin@cdjrlc.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybglogicsvr:qybglogicsvr4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Delete the redundant word 'also'. Delete the redundant word 'the'. Signed-off-by: Jilin Yuan --- drivers/mtd/ubi/ubi.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/ubi/ubi.h b/drivers/mtd/ubi/ubi.h index 078112e23dfd..0110eb3d4db6 100644 --- a/drivers/mtd/ubi/ubi.h +++ b/drivers/mtd/ubi/ubi.h @@ -86,7 +86,7 @@ void ubi_err(const struct ubi_device *ubi, const char *fm= t, ...); * Error codes returned by the I/O sub-system. * * UBI_IO_FF: the read region of flash contains only 0xFFs - * UBI_IO_FF_BITFLIPS: the same as %UBI_IO_FF, but also also there was a d= ata + * UBI_IO_FF_BITFLIPS: the same as %UBI_IO_FF, but also there was a data * integrity error reported by the MTD driver * (uncorrectable ECC error in case of NAND) * UBI_IO_BAD_HDR: the EC or VID header is corrupted (bad magic or CRC) @@ -281,7 +281,7 @@ struct ubi_eba_leb_desc { =20 /** * struct ubi_volume - UBI volume description data structure. - * @dev: device object to make use of the the Linux device model + * @dev: device object to make use of the Linux device model * @cdev: character device object to create character device * @ubi: reference to the UBI device description object * @vol_id: volume ID @@ -439,7 +439,7 @@ struct ubi_debug_info { =20 /** * struct ubi_device - UBI device description structure - * @dev: UBI device object to use the the Linux device model + * @dev: UBI device object to use the Linux device model * @cdev: character device object to create character device * @ubi_num: UBI device number * @ubi_name: UBI device name --=20 2.36.1