From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762096AbZD1PrN (ORCPT ); Tue, 28 Apr 2009 11:47:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760910AbZD1Pq5 (ORCPT ); Tue, 28 Apr 2009 11:46:57 -0400 Received: from wa-out-1112.google.com ([209.85.146.180]:18616 "EHLO wa-out-1112.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755664AbZD1Pq5 (ORCPT ); Tue, 28 Apr 2009 11:46:57 -0400 From: Grant Likely Subject: [PATCH] virtio: add missing include to virtio_net.h To: linux-kernel@vger.kernel.org, Rusty Russell Date: Tue, 28 Apr 2009 09:46:54 -0600 Message-ID: <20090428154654.19053.92829.stgit@localhost.localdomain> User-Agent: StGIT/0.14.2 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Grant Likely virtio_net.h uses the macro ETH_ALEN which is defined in linux/if_ether.h. Discovered when hacking on virtio-over-pci patches. Signed-off-by: Grant Likely --- include/linux/virtio_net.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/virtio_net.h b/include/linux/virtio_net.h index 242348b..cec79ad 100644 --- a/include/linux/virtio_net.h +++ b/include/linux/virtio_net.h @@ -4,6 +4,7 @@ * compatible drivers/servers. */ #include #include +#include /* The ID for virtio_net */ #define VIRTIO_ID_NET 1