From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) by dpdk.org (Postfix) with ESMTP id 560C468C0 for ; Fri, 24 Jan 2014 17:17:52 +0100 (CET) Received: by mail-wg0-f45.google.com with SMTP id n12so3230943wgh.12 for ; Fri, 24 Jan 2014 08:19:09 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=BD/CyjC7J+RdA6FYAGnpkU9CiqIgrd5j3qstIXRUGAA=; b=gSn6yxXAKJyF1PMvMTOeCdbMtjzkblYKWTnZ69uH/lzMLeCJ2FdJwZN9MDA/usWvdV MmhoirdJhCAGLk8MvomCeh8WYavT6kw9XEHI0bjCWXzsIWUzXO9ogBQohrxPeuKTWvp6 BXwsXXPohQben2gPHVZXm9yNS75nN+nLGtpjaEux45Vw8dS/NqwlYZQ8pdfFv1ERoz9q vTDj2UBze8xl5ghFoZFGpQe5N7nzeZMRAPEooAzTjpvdBC3yBNF2R4w1IuV4kB6l8Mji 1H1kApZTgQ3aAC108qop6kCavV1nVzARrmQbYqsXkkgn/Wa3y5Wvx5eJeWAkRivBDmKY ze5g== X-Gm-Message-State: ALoCoQmkql9W1ibWC7xiSViY8nyZpRRf3EC9PbZAxYa85Y8xdjVQg3NrOsFMSzMwMf/Ah4YIieWz X-Received: by 10.194.61.84 with SMTP id n20mr1982245wjr.61.1390580349543; Fri, 24 Jan 2014 08:19:09 -0800 (PST) Received: from angus.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id n15sm6908198wij.3.2014.01.24.08.19.08 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 24 Jan 2014 08:19:08 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Fri, 24 Jan 2014 17:18:31 +0100 Message-Id: X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [memnic PATCH 2/3] pmd: remove useless includes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jan 2014 16:17:52 -0000 Signed-off-by: Thomas Monjalon --- common/memnic.h | 4 ---- pmd/pmd_memnic.c | 4 ---- 2 files changed, 8 deletions(-) diff --git a/common/memnic.h b/common/memnic.h index 6ff38a0..58dd019 100644 --- a/common/memnic.h +++ b/common/memnic.h @@ -31,10 +31,6 @@ #ifndef __MEMNIC_H__ #define __MEMNIC_H__ -#ifndef __KERNEL__ -#include -#endif /* __KERNEL__ */ - #define MEMNIC_MAGIC 0x43494e76 #define MEMNIC_VERSION 0x00000001 #define MEMNIC_VERSION_1 0x00000001 diff --git a/pmd/pmd_memnic.c b/pmd/pmd_memnic.c index d16eb0d..619941a 100644 --- a/pmd/pmd_memnic.c +++ b/pmd/pmd_memnic.c @@ -30,18 +30,14 @@ */ #include - #include #include #include -#include #include "memnic.h" #include -#include #include -#include #include #include -- 1.7.10.4