License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / net / 6lowpan / 6lowpan_i.h
blob53cf446ce2e3a5666b2b39b7a1084db69ca5e0c0
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __6LOWPAN_I_H
3 #define __6LOWPAN_I_H
5 #include <linux/netdevice.h>
7 #include <net/6lowpan.h>
9 /* caller need to be sure it's dev->type is ARPHRD_6LOWPAN */
10 static inline bool lowpan_is_ll(const struct net_device *dev,
11 enum lowpan_lltypes lltype)
13 return lowpan_dev(dev)->lltype == lltype;
16 extern const struct ndisc_ops lowpan_ndisc_ops;
18 int addrconf_ifid_802154_6lowpan(u8 *eui, struct net_device *dev);
20 #ifdef CONFIG_6LOWPAN_DEBUGFS
21 int lowpan_dev_debugfs_init(struct net_device *dev);
22 void lowpan_dev_debugfs_exit(struct net_device *dev);
24 int __init lowpan_debugfs_init(void);
25 void lowpan_debugfs_exit(void);
26 #else
27 static inline int lowpan_dev_debugfs_init(struct net_device *dev)
29 return 0;
32 static inline void lowpan_dev_debugfs_exit(struct net_device *dev) { }
34 static inline int __init lowpan_debugfs_init(void)
36 return 0;
39 static inline void lowpan_debugfs_exit(void) { }
40 #endif /* CONFIG_6LOWPAN_DEBUGFS */
42 #endif /* __6LOWPAN_I_H */