summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnd Bergmann <arndb@de.ibm.com>2005-06-28 15:58:50 -0700
committerDavid S. Miller <davem@davemloft.net>2005-06-28 15:58:50 -0700
commitbcd61272db5e643b6d9c01c9d5085b914d9f19df (patch)
tree8760fd161334fcdb0a6198b033ed617f8c02dd6c
parentff593c592a5d674822dce31143635b025f6415b2 (diff)
[NET]: Add missing include to linux/netdevice.h
linux/etherdevice.h can't be included standalone at the moment, which is required in order to sort the header files in the recommended alphabetic order. This patch fixes that and is needed to build spider_net. Signed-off-by: Arnd Bergmann <arndb@de.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/linux/etherdevice.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h
index 8a2df4dfbc59..cf3847edc50f 100644
--- a/include/linux/etherdevice.h
+++ b/include/linux/etherdevice.h
@@ -25,6 +25,7 @@
#define _LINUX_ETHERDEVICE_H
#include <linux/if_ether.h>
+#include <linux/netdevice.h>
#include <linux/random.h>
#ifdef __KERNEL__