From patchwork Tue Jul 11 18:55:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 26804 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 343727CD2; Tue, 11 Jul 2017 20:56:26 +0200 (CEST) Received: from mail-pf0-f180.google.com (mail-pf0-f180.google.com [209.85.192.180]) by dpdk.org (Postfix) with ESMTP id 489137CBB for ; Tue, 11 Jul 2017 20:56:10 +0200 (CEST) Received: by mail-pf0-f180.google.com with SMTP id q85so514109pfq.1 for ; Tue, 11 Jul 2017 11:56:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=NjoZYtPSyB49SwqjDcFkZDeskh2jLh3CiC2+NdeWD7s=; b=QA7+oPp7WZvHFMS6M+pxa22fcdJB8LoIKwx6pIYrBSvW35uPtq/ZD8eoovscxLR7bE +HWM+gm4mvGDxRCfFZ3HOqB2AaKNPjQVBW1vNctlVX8CS36XbWan0U5BG0S4Pn3oTMI0 hwqYSB6tEloeaeZjYl3ZlJ01oWFsRE87ZoijMyG9++Zz9tUzcLP4Z+zOXIobRoQPcFA3 +mK0JcFPILxm71Gz3+IwD1C2oqUyxSHzM915sGIS2s4ejIvG3MhWRpcAmdjeEnO7onbf 3N2DJxsNwlo769Pfpxu3+XD/D1SfOdHHgB0HRw9ta2KUqtB5qltzcMF7fGIfg/I8Z5VC 71fg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=NjoZYtPSyB49SwqjDcFkZDeskh2jLh3CiC2+NdeWD7s=; b=dnvDergvAvJU1WgDumr2v9je+8M2DZEXtEF8BYDBSmbvj+NbXLN/JzclHKu1kjXj1q H9VIuyvcVCMelKxZDyZrBgrm6Fn53zZ8tG8qFAvxWhqhvMqFsbKiqZsD1qqMrdxUFM46 nemm5SKR4MBiFpQdP4bbeid0xcdIP3aVPdMbwgKznUGYi2s2of2QzWgRWXg+HGF1qVGA SJ2FZpFoZOge/OBKhvf4nleiSwVnzL6yRfVVqXc2//m7iTCIUq1raeNBLdcyZKLdHJzS Y0r/7AnGcQ9S3npthXTBqTONB6b0ev+iVn2Iwdi9im6EcG8uyBem0Nagu9C4bvaGNsEH BqcA== X-Gm-Message-State: AIVw113F5WCIdmC9DcZLsnY7jFT/6b4nu+bk39WytGI6aVdpln+lSCh4 oP+QggSGYGbRzVeWXbm0CA== X-Received: by 10.84.241.4 with SMTP id a4mr1440886pll.160.1499799369295; Tue, 11 Jul 2017 11:56:09 -0700 (PDT) Received: from xeon-e3.wavecable.com (76-14-207-240.or.wavecable.com. [76.14.207.240]) by smtp.gmail.com with ESMTPSA id p77sm104099pfd.62.2017.07.11.11.56.08 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 11 Jul 2017 11:56:08 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Tue, 11 Jul 2017 11:55:38 -0700 Message-Id: <20170711185546.26138-12-stephen@networkplumber.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170711185546.26138-1-stephen@networkplumber.org> References: <20170711185546.26138-1-stephen@networkplumber.org> Subject: [dpdk-dev] [PATCH 11/19] virtio: remove duplicated includes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Stephen Hemminger --- drivers/net/virtio/virtio_user/virtio_user_dev.c | 1 - drivers/net/virtio/virtio_user_ethdev.c | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/net/virtio/virtio_user/virtio_user_dev.c b/drivers/net/virtio/virtio_user/virtio_user_dev.c index 450404ba6975..79412714a30c 100644 --- a/drivers/net/virtio/virtio_user/virtio_user_dev.c +++ b/drivers/net/virtio/virtio_user/virtio_user_dev.c @@ -41,7 +41,6 @@ #include #include #include -#include #include "vhost.h" #include "virtio_user_dev.h" diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c index b56a6d4657f8..c96144434adf 100644 --- a/drivers/net/virtio/virtio_user_ethdev.c +++ b/drivers/net/virtio/virtio_user_ethdev.c @@ -35,7 +35,6 @@ #include #include #include -#include #include #include