From patchwork Tue Oct 12 13:25:05 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandru Elisei X-Patchwork-Id: 12552595 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4131DC433EF for ; Tue, 12 Oct 2021 13:23:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2BB9360F23 for ; Tue, 12 Oct 2021 13:23:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236878AbhJLNZt (ORCPT ); Tue, 12 Oct 2021 09:25:49 -0400 Received: from foss.arm.com ([217.140.110.172]:42134 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236727AbhJLNZr (ORCPT ); Tue, 12 Oct 2021 09:25:47 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3BC88ED1; Tue, 12 Oct 2021 06:23:46 -0700 (PDT) Received: from monolith.cable.virginm.net (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id CC6C23F66F; Tue, 12 Oct 2021 06:23:44 -0700 (PDT) From: Alexandru Elisei To: will@kernel.org, julien.thierry.kdev@gmail.com, kvm@vger.kernel.org Cc: andre.przywara@arm.com, jean-philippe@linaro.org Subject: [PATCH v2 kvmtool 2/7] vfio/pci.c: Remove double include for assert.h Date: Tue, 12 Oct 2021 14:25:05 +0100 Message-Id: <20211012132510.42134-3-alexandru.elisei@arm.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20211012132510.42134-1-alexandru.elisei@arm.com> References: <20211012132510.42134-1-alexandru.elisei@arm.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org assert.h is included twice, keep only one instance. Reviewed-by: Andre Przywara Signed-off-by: Alexandru Elisei --- vfio/pci.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/vfio/pci.c b/vfio/pci.c index ea33fd6..10ff99e 100644 --- a/vfio/pci.c +++ b/vfio/pci.c @@ -10,8 +10,6 @@ #include #include -#include - /* Some distros don't have the define. */ #ifndef PCI_CAP_EXP_RC_ENDPOINT_SIZEOF_V1 #define PCI_CAP_EXP_RC_ENDPOINT_SIZEOF_V1 12