License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / net / 8021q / vlanproc.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __BEN_VLAN_PROC_INC__
3#define __BEN_VLAN_PROC_INC__
4
5#ifdef CONFIG_PROC_FS
cd1c7014
PE
6struct net;
7
8int vlan_proc_init(struct net *net);
e4999f25 9void vlan_proc_rem_dev(struct net_device *vlandev);
2029cc2c 10int vlan_proc_add_dev(struct net_device *vlandev);
cd1c7014 11void vlan_proc_cleanup(struct net *net);
1da177e4
LT
12
13#else /* No CONFIG_PROC_FS */
14
cd1c7014
PE
15#define vlan_proc_init(net) (0)
16#define vlan_proc_cleanup(net) do {} while (0)
2029cc2c 17#define vlan_proc_add_dev(dev) ({(void)(dev), 0; })
e4999f25 18#define vlan_proc_rem_dev(dev) do {} while (0)
1da177e4
LT
19#endif
20
21#endif /* !(__BEN_VLAN_PROC_INC__) */