From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [ [PATCH v2] 04/13] virtio_pci: use rte_io.h for non-x86 arch Date: Mon, 14 Dec 2015 19:58:21 +0530 Message-ID: <20151214142820.GB30309@localhost.localdomain> References: <1450098032-21198-1-git-send-email-sshukla@mvista.com> <1450098032-21198-5-git-send-email-sshukla@mvista.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org To: Santosh Shukla Return-path: Received: from na01-by2-obe.outbound.protection.outlook.com (mail-by2on0086.outbound.protection.outlook.com [207.46.100.86]) by dpdk.org (Postfix) with ESMTP id 47E5F567C for ; Mon, 14 Dec 2015 15:28:39 +0100 (CET) Content-Disposition: inline In-Reply-To: <1450098032-21198-5-git-send-email-sshukla@mvista.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Dec 14, 2015 at 06:30:23PM +0530, Santosh Shukla wrote: > Use rte_io.h for non-x86 arch. > > Signed-off-by: Santosh Shukla > --- > drivers/net/virtio/virtio_pci.h | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/net/virtio/virtio_pci.h b/drivers/net/virtio/virtio_pci.h > index 47f722a..3f4ff80 100644 > --- a/drivers/net/virtio/virtio_pci.h > +++ b/drivers/net/virtio/virtio_pci.h > @@ -40,7 +40,11 @@ > #include > #include > #else > +#if defined(RTE_ARCH_X86_64) || defined(RTE_ARCH_I686) > #include > +#else > +#include I believe this patch can be squashed with patch 08/13 > +#endif > #endif > > #include > -- > 1.7.9.5 >