diff options
author | Patrick McHardy <kaber@trash.net> | 2008-07-15 01:51:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-15 01:51:55 -0400 |
commit | 61362766d769c934a9d12d5516323c544c161908 (patch) | |
tree | 2d15247c2fc7c204cbf8859cdd92f99d02577e4b /net/8021q | |
parent | d80aa31bbffc4bc8b5be36c57cbea128f52e1e1f (diff) |
vlan: remove unnecessary include statements
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan.c | 8 | ||||
-rw-r--r-- | net/8021q/vlan_dev.c | 7 | ||||
-rw-r--r-- | net/8021q/vlanproc.c | 11 |
3 files changed, 4 insertions, 22 deletions
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index 68bdcf4a795c..9f04cab92f95 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c | |||
@@ -18,21 +18,17 @@ | |||
18 | * 2 of the License, or (at your option) any later version. | 18 | * 2 of the License, or (at your option) any later version. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <asm/uaccess.h> /* for copy_from_user */ | ||
22 | #include <linux/capability.h> | 21 | #include <linux/capability.h> |
23 | #include <linux/module.h> | 22 | #include <linux/module.h> |
24 | #include <linux/netdevice.h> | 23 | #include <linux/netdevice.h> |
25 | #include <linux/skbuff.h> | 24 | #include <linux/skbuff.h> |
26 | #include <net/datalink.h> | ||
27 | #include <linux/mm.h> | ||
28 | #include <linux/in.h> | ||
29 | #include <linux/init.h> | 25 | #include <linux/init.h> |
30 | #include <net/p8022.h> | ||
31 | #include <net/arp.h> | ||
32 | #include <linux/rtnetlink.h> | 26 | #include <linux/rtnetlink.h> |
33 | #include <linux/notifier.h> | 27 | #include <linux/notifier.h> |
28 | #include <net/rtnetlink.h> | ||
34 | #include <net/net_namespace.h> | 29 | #include <net/net_namespace.h> |
35 | #include <net/netns/generic.h> | 30 | #include <net/netns/generic.h> |
31 | #include <asm/uaccess.h> | ||
36 | 32 | ||
37 | #include <linux/if_vlan.h> | 33 | #include <linux/if_vlan.h> |
38 | #include "vlan.h" | 34 | #include "vlan.h" |
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index c3adba9501cb..6b985f23fd9f 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c | |||
@@ -21,22 +21,15 @@ | |||
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include <linux/module.h> | 23 | #include <linux/module.h> |
24 | #include <linux/mm.h> | ||
25 | #include <linux/in.h> | ||
26 | #include <linux/init.h> | ||
27 | #include <asm/uaccess.h> /* for copy_from_user */ | ||
28 | #include <linux/skbuff.h> | 24 | #include <linux/skbuff.h> |
29 | #include <linux/netdevice.h> | 25 | #include <linux/netdevice.h> |
30 | #include <linux/etherdevice.h> | 26 | #include <linux/etherdevice.h> |
31 | #include <linux/ethtool.h> | 27 | #include <linux/ethtool.h> |
32 | #include <net/datalink.h> | ||
33 | #include <net/p8022.h> | ||
34 | #include <net/arp.h> | 28 | #include <net/arp.h> |
35 | 29 | ||
36 | #include "vlan.h" | 30 | #include "vlan.h" |
37 | #include "vlanproc.h" | 31 | #include "vlanproc.h" |
38 | #include <linux/if_vlan.h> | 32 | #include <linux/if_vlan.h> |
39 | #include <net/ip.h> | ||
40 | 33 | ||
41 | /* | 34 | /* |
42 | * Rebuild the Ethernet MAC header. This is called after an ARP | 35 | * Rebuild the Ethernet MAC header. This is called after an ARP |
diff --git a/net/8021q/vlanproc.c b/net/8021q/vlanproc.c index 6073a888b6f9..0feefa4e1a4b 100644 --- a/net/8021q/vlanproc.c +++ b/net/8021q/vlanproc.c | |||
@@ -18,16 +18,9 @@ | |||
18 | *****************************************************************************/ | 18 | *****************************************************************************/ |
19 | 19 | ||
20 | #include <linux/module.h> | 20 | #include <linux/module.h> |
21 | #include <linux/stddef.h> /* offsetof(), etc. */ | 21 | #include <linux/errno.h> |
22 | #include <linux/errno.h> /* return codes */ | ||
23 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
24 | #include <linux/slab.h> /* kmalloc(), kfree() */ | 23 | #include <linux/string.h> |
25 | #include <linux/mm.h> | ||
26 | #include <linux/string.h> /* inline mem*, str* functions */ | ||
27 | #include <linux/init.h> /* __initfunc et al. */ | ||
28 | #include <asm/byteorder.h> /* htons(), etc. */ | ||
29 | #include <asm/uaccess.h> /* copy_to_user */ | ||
30 | #include <asm/io.h> | ||
31 | #include <linux/proc_fs.h> | 24 | #include <linux/proc_fs.h> |
32 | #include <linux/seq_file.h> | 25 | #include <linux/seq_file.h> |
33 | #include <linux/fs.h> | 26 | #include <linux/fs.h> |