summaryrefslogtreecommitdiffstats
path: root/net/8021q/vlanproc.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/8021q/vlanproc.h')
-rw-r--r--net/8021q/vlanproc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/8021q/vlanproc.h b/net/8021q/vlanproc.h
index 063f60a3d5cc..8838a2e92eb6 100644
--- a/net/8021q/vlanproc.h
+++ b/net/8021q/vlanproc.h
@@ -5,7 +5,7 @@
5struct net; 5struct net;
6 6
7int vlan_proc_init(struct net *net); 7int vlan_proc_init(struct net *net);
8int vlan_proc_rem_dev(struct net_device *vlandev); 8void vlan_proc_rem_dev(struct net_device *vlandev);
9int vlan_proc_add_dev(struct net_device *vlandev); 9int vlan_proc_add_dev(struct net_device *vlandev);
10void vlan_proc_cleanup(struct net *net); 10void vlan_proc_cleanup(struct net *net);
11 11
@@ -14,7 +14,7 @@ void vlan_proc_cleanup(struct net *net);
14#define vlan_proc_init(net) (0) 14#define vlan_proc_init(net) (0)
15#define vlan_proc_cleanup(net) do {} while (0) 15#define vlan_proc_cleanup(net) do {} while (0)
16#define vlan_proc_add_dev(dev) ({(void)(dev), 0; }) 16#define vlan_proc_add_dev(dev) ({(void)(dev), 0; })
17#define vlan_proc_rem_dev(dev) ({(void)(dev), 0; }) 17#define vlan_proc_rem_dev(dev) do {} while (0)
18#endif 18#endif
19 19
20#endif /* !(__BEN_VLAN_PROC_INC__) */ 20#endif /* !(__BEN_VLAN_PROC_INC__) */