From nobody Mon Apr 20 04:20:30 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 E8D5FC433EF for ; Wed, 22 Jun 2022 14:02:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1357849AbiFVOCy (ORCPT ); Wed, 22 Jun 2022 10:02:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52342 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1357735AbiFVOCp (ORCPT ); Wed, 22 Jun 2022 10:02:45 -0400 Received: from smtpbg.qq.com (smtpbg123.qq.com [175.27.65.52]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EE63D36E0C; Wed, 22 Jun 2022 07:02:35 -0700 (PDT) X-QQ-mid: bizesmtp76t1655906526tzcri551 Received: from ubuntu.localdomain ( [106.117.78.84]) by bizesmtp.qq.com (ESMTP) with id ; Wed, 22 Jun 2022 22:02:02 +0800 (CST) X-QQ-SSF: 01000000008000B0B000B00A0000000 X-QQ-FEAT: c2aLWwQTF5igxUUED4g1cAq0SdDidm8CRr68pIbYernnYftDCXnJ007BfYZyW 0KKhWHfNNmUSswnaNid2i+8vc3YeOzHoFjV7raXX18OoXiXCzrciyEPdKxBq4ujbvpfinBS ctTbacficMFTVvamufbt18iNFot5LUEjSd/9w/iJFqrXprYTtPE0SEptD9p5pcKRkCs7ZYc kdmA9TJaZAmd8DH+wEIBZ99YRg5w0XDYEzuugP/tkIl1UDVTWyIc/txfTmY+EOPS9zBp2qp JV4oZcaJlhkCP0fEXR/yCflovrYwIXbJ7lb3qhXMPP4+7ia55bEni1NMPggKG7YGDQi7JiN ZJYMZlAKi7sLs/NQ2wM18IwVwtsfo4d51OBskB/FFc4zdJRp0M= X-QQ-GoodBg: 0 From: Jiang Jian To: rth@twiddle.net, ink@jurassic.park.msu.ru, mattst88@gmail.com Cc: linux-alpha@vger.kernel.org, linux-kernel@vger.kernel.org, Jiang Jian Subject: [PATCH] alpha: irq_i8259: drop unexpected word 'and' in the comments Date: Wed, 22 Jun 2022 22:02:01 +0800 Message-Id: <20220622140201.5458-1-jiangjian@cdjrlc.com> X-Mailer: git-send-email 2.17.1 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybgspam:qybgspam8 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" there is an unexpected word 'and' in the comments that need to be dropped file: arch/alpha/kernel/irq_i8259.c line: 150 * Therefore, read the mask register and and out those lines changed to: * Therefore, read the mask register and and out those lines Signed-off-by: Jiang Jian --- arch/alpha/kernel/irq_i8259.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/alpha/kernel/irq_i8259.c b/arch/alpha/kernel/irq_i8259.c index 1dcf0d9038fd..db574dcd6675 100644 --- a/arch/alpha/kernel/irq_i8259.c +++ b/arch/alpha/kernel/irq_i8259.c @@ -147,7 +147,7 @@ isa_no_iack_sc_device_interrupt(unsigned long vector) */ /*=20 * The first read of gives you *all* interrupting lines. - * Therefore, read the mask register and and out those lines + * Therefore, read the mask register and out those lines * not enabled. Note that some documentation has 21 and a1=20 * write only. This is not true. */ --=20 2.17.1