From patchwork Mon Aug 1 01:39:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bo Liu X-Patchwork-Id: 12933323 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 C9EE8C00140 for ; Mon, 1 Aug 2022 01:44:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238924AbiHABor (ORCPT ); Sun, 31 Jul 2022 21:44:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52866 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238774AbiHABoq (ORCPT ); Sun, 31 Jul 2022 21:44:46 -0400 X-Greylist: delayed 309 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Sun, 31 Jul 2022 18:44:43 PDT Received: from mtakt52.mailrelay.cn (mtakt52.mailrelay.cn [110.34.168.197]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7645C65F6 for ; Sun, 31 Jul 2022 18:44:43 -0700 (PDT) Received: from jtjnmail201611.home.langchao.com (unknown [60.208.111.195]) by smtp.mailrelay.cn (Postfix) with ESMTPS id DCA7941A4FBB; Mon, 1 Aug 2022 09:39:20 +0800 (CST) Received: from localhost.localdomain (10.200.104.97) by jtjnmail201611.home.langchao.com (10.100.2.11) with Microsoft SMTP Server id 15.1.2507.9; Mon, 1 Aug 2022 09:39:20 +0800 From: Bo Liu To: , CC: , , Bo Liu Subject: [PATCH] vfio/pci: fix the wrong word Date: Sun, 31 Jul 2022 21:39:18 -0400 Message-ID: <20220801013918.2520-1-liubo03@inspur.com> X-Mailer: git-send-email 2.18.2 MIME-Version: 1.0 X-Originating-IP: [10.200.104.97] Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org This patch fixes a wrong word in comment. Signed-off-by: Bo Liu --- drivers/vfio/pci/vfio_pci_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/vfio/pci/vfio_pci_config.c b/drivers/vfio/pci/vfio_pci_config.c index 97e5ade6efb3..442d3ba4122b 100644 --- a/drivers/vfio/pci/vfio_pci_config.c +++ b/drivers/vfio/pci/vfio_pci_config.c @@ -222,7 +222,7 @@ static int vfio_default_config_write(struct vfio_pci_core_device *vdev, int pos, memcpy(vdev->vconfig + pos, &virt_val, count); } - /* Non-virtualzed and writable bits go to hardware */ + /* Non-virtualized and writable bits go to hardware */ if (write & ~virt) { struct pci_dev *pdev = vdev->pdev; __le32 phys_val = 0;