From nobody Sat Apr 27 08:24:49 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 163928807639520.55839732900108; Sat, 11 Dec 2021 21:47:56 -0800 (PST) Received: from list by lists.xenproject.org with outflank-mailman.245554.423711 (Exim 4.92) (envelope-from ) id 1mwHhN-0004Ho-Ca; Sun, 12 Dec 2021 05:47:01 +0000 Received: by outflank-mailman (output) from mailman id 245554.423711; Sun, 12 Dec 2021 05:47:01 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1mwHhN-0004Hb-5B; Sun, 12 Dec 2021 05:47:01 +0000 Received: by outflank-mailman (input) for mailman id 245554; Sun, 12 Dec 2021 03:25:07 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1mwFU2-0005S4-Vs for xen-devel@lists.xenproject.org; Sun, 12 Dec 2021 03:25:06 +0000 Received: from smtpbg587.qq.com (smtpbg126.qq.com [106.55.201.22]) by se1-gles-flk1.inumbo.com (Halon) with ESMTPS id 15a073fc-5afb-11ec-bf02-3911bdbc85ab; Sun, 12 Dec 2021 04:25:01 +0100 (CET) Received: from localhost.localdomain (unknown [182.132.179.213]) by esmtp6.qq.com (ESMTP) with id ; Sun, 12 Dec 2021 11:24:26 +0800 (CST) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 15a073fc-5afb-11ec-bf02-3911bdbc85ab X-QQ-mid: bizesmtp44t1639279467tpfmb7r9 X-QQ-SSF: 01000000002000D0H000B00A0000000 X-QQ-FEAT: F3yR32iATbjGUty7JOvTDi9n9m+mqQYI+e6hSssoDfBJE9Gd1TVesQbCMo/zT XaJoDxOp5Ul78RrkWXckhcOORY64vVS4qzStsNL3hzJL3LMVuIJNV1J3pJipQIrybW8xzxE 7p+ghhl9NUn7a07iDNvzpo5d1cL0fM6v6Q/125FwcN3+X3jB7Yl27zeBaAXKADvcfOByLrJ W8HyHVBHvjzDxfeuSst7SyPhRrOd2kKwMcIXUz3XZrNsVRfzQH3YuaPbgh8R2qb63WFJY3M /vjwaqXnzof+3K+A5nfEEXeJDN/ET/+HV0h0P1t25lYBlvzf8kDycHW+Bt8hJk2iZ+tgNGn OPcKH6XRVfHOp5f/XEO5bZ6t8JEnIPFAV0cQONr X-QQ-GoodBg: 0 From: Jason Wang To: jgross@suse.com Cc: boris.ostrovsky@oracle.com, sstabellini@kernel.org, wangborong@cdjrlc.com, xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org Subject: [PATCH] xen/pciback: fix typo in a comment Date: Sun, 12 Dec 2021 11:24:08 +0800 Message-Id: <20211212032408.52180-1-wangborong@cdjrlc.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybgspam:qybgspam2 X-ZM-MESSAGEID: 1639288079097100001 Content-Type: text/plain; charset="utf-8" The double `the' in the comment in line 163 is repeated. Remove it from the comment. Signed-off-by: Jason Wang --- drivers/xen/xen-pciback/pciback_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/xen/xen-pciback/pciback_ops.c b/drivers/xen/xen-pcibac= k/pciback_ops.c index 3fbc21466a93..e38b43b5065e 100644 --- a/drivers/xen/xen-pciback/pciback_ops.c +++ b/drivers/xen/xen-pciback/pciback_ops.c @@ -160,7 +160,7 @@ int xen_pcibk_enable_msi(struct xen_pcibk_device *pdev, } =20 /* The value the guest needs is actually the IDT vector, not the - * the local domain's IRQ number. */ + * local domain's IRQ number. */ =20 op->value =3D dev->irq ? xen_pirq_from_irq(dev->irq) : 0; =20 --=20 2.34.1