From mboxrd@z Thu Jan 1 00:00:00 1970 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 6F683EB64D7 for ; Wed, 21 Jun 2023 02:03:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229718AbjFUCDr (ORCPT ); Tue, 20 Jun 2023 22:03:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38686 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229470AbjFUCDq (ORCPT ); Tue, 20 Jun 2023 22:03:46 -0400 Received: from ssh247.corpemail.net (ssh247.corpemail.net [210.51.61.247]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A19F51987 for ; Tue, 20 Jun 2023 19:03:44 -0700 (PDT) Received: from ssh247.corpemail.net by ssh247.corpemail.net ((D)) with ASMTP (SSL) id QYY00037; Wed, 21 Jun 2023 10:03:37 +0800 Received: from localhost.localdomain (10.200.104.82) by jtjnmail201608.home.langchao.com (10.100.2.8) with Microsoft SMTP Server id 15.1.2507.23; Wed, 21 Jun 2023 10:03:34 +0800 From: Deming Wang To: , , CC: , , Bo Liu Subject: [PATCH] mtd: sm_ftl: Fix typos in comments Date: Tue, 20 Jun 2023 22:03:31 -0400 Message-ID: <20230621020331.1508-1-wangdeming@inspur.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.200.104.82] tUid: 2023621100338e7b17d446fcc507dc9532ed0c123fa0d X-Abuse-Reports-To: service@corp-email.com Abuse-Reports-To: service@corp-email.com X-Complaints-To: service@corp-email.com X-Report-Abuse-To: service@corp-email.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Bo Liu Fix typo in the description of the 'succesfull'. Signed-off-by: Bo Liu --- drivers/mtd/sm_ftl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/sm_ftl.c b/drivers/mtd/sm_ftl.c index 4cfec3b7b446..b5b3c4c44a94 100644 --- a/drivers/mtd/sm_ftl.c +++ b/drivers/mtd/sm_ftl.c @@ -981,7 +981,7 @@ static int sm_cache_flush(struct sm_ftl *ftl) /* Update the FTL table */ zone->lba_to_phys_table[ftl->cache_block] = write_sector; - /* Write succesfull, so erase and free the old block */ + /* Write successful, so erase and free the old block */ if (block_num > 0) sm_erase_block(ftl, zone_num, block_num, 1); -- 2.27.0