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 C552CEB64DC for ; Tue, 18 Jul 2023 16:35:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232037AbjGRQfd (ORCPT ); Tue, 18 Jul 2023 12:35:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47760 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231425AbjGRQfc (ORCPT ); Tue, 18 Jul 2023 12:35:32 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A274A124 for ; Tue, 18 Jul 2023 09:35:31 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R54Lm6BJVzBR9sr for ; Wed, 19 Jul 2023 00:35:28 +0800 (CST) Authentication-Results: mail.208.org (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=208.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=208.org; h= content-transfer-encoding:content-type:message-id:user-agent :references:in-reply-to:subject:to:from:date:mime-version; s= dkim; t=1689698128; x=1692290129; bh=f0lIyFBFjPx0IprcathWHFRn+Oz vzscZlcDubsXRrY4=; b=N15vQrHMJhMkwLbFlcB4hasBYuYlEcBhtzhXs4e/G8Z vR0tlAM6YLD39x3j0RpuvcdwKQ4QmG3CJMP2Wiu22I3HGsrvokV1Qk6Ihu2qVH1E bJqpylG5sUp/wxgnioy9BbWt45t1G0ytyBVUA98kcOAeHNbLJlaXu++DtoFoHifT kwk/yLjGkTvdAFltjoLEQEsqfOwI/LUQUta5Hj2iWiAGXLPRMfWYHbeeojAe5sP5 az5lvVQx2WuwIo23etgHZIAxU4L86YLb8QvgO1KhkGvk+wRuiGwV37n05rXGHBmm PGY7wGz71dlsQ2TpDmQevYg2Hp+DcRA10ftKMhK3nqA== X-Virus-Scanned: amavisd-new at mail.208.org Received: from mail.208.org ([127.0.0.1]) by mail.208.org (mail.208.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id rejBM2WLlzbI for ; Wed, 19 Jul 2023 00:35:28 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R54Lm4bZfzBR1PQ; Wed, 19 Jul 2023 00:35:28 +0800 (CST) MIME-Version: 1.0 Date: Wed, 19 Jul 2023 00:35:28 +0800 From: pangzizhen001@208suo.com To: dinguyen@kernel.org, bp@alien8.de, tony.luck@intel.com Cc: linux-edac@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] drivers/edac: Fix comment typo In-Reply-To: References: <20230712094640.24445-1-wangjianli@cdjrlc.com> User-Agent: Roundcube Webmail Message-ID: <562575dc60e79aab479f1d83ffc54ecb@208suo.com> X-Sender: pangzizhen001@208suo.com Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-edac@vger.kernel.org Delete duplicate word "the" Signed-off-by: wangjianli --- drivers/edac/altera_edac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c index 8b31cd54bdb6..a3b17813eb9b 100644 --- a/drivers/edac/altera_edac.c +++ b/drivers/edac/altera_edac.c @@ -168,7 +168,7 @@ static ssize_t altr_sdr_mc_err_inject_write(struct file *file, /* * To trigger the error, we need to read the data back * (the data was written with errors above). - * The READ_ONCE macros and printk are used to prevent the + * The READ_ONCE macros and printk are used to prevent * the compiler optimizing these reads out. */ reg = READ_ONCE(ptemp[0]);