Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __BEN_VLAN_PROC_INC__ |
| 2 | #define __BEN_VLAN_PROC_INC__ |
| 3 | |
| 4 | #ifdef CONFIG_PROC_FS |
| 5 | int vlan_proc_init(void); |
| 6 | int vlan_proc_rem_dev(struct net_device *vlandev); |
Patrick McHardy | 2029cc2 | 2008-01-21 00:26:41 -0800 | [diff] [blame] | 7 | int vlan_proc_add_dev(struct net_device *vlandev); |
| 8 | void vlan_proc_cleanup(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | #else /* No CONFIG_PROC_FS */ |
| 11 | |
| 12 | #define vlan_proc_init() (0) |
Patrick McHardy | 2029cc2 | 2008-01-21 00:26:41 -0800 | [diff] [blame] | 13 | #define vlan_proc_cleanup() do {} while (0) |
| 14 | #define vlan_proc_add_dev(dev) ({(void)(dev), 0; }) |
| 15 | #define vlan_proc_rem_dev(dev) ({(void)(dev), 0; }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #endif |
| 17 | |
| 18 | #endif /* !(__BEN_VLAN_PROC_INC__) */ |