blob: 97ecc27aeca695da7de57e66ac741663095886a1 [file] [log] [blame]
Alexander Aringb1815fd2015-12-09 22:46:30 +01001#ifndef __6LOWPAN_I_H
2#define __6LOWPAN_I_H
3
4#include <linux/netdevice.h>
5
Alexander Aring27323632016-04-11 11:04:23 +02006#include <net/6lowpan.h>
7
8/* caller need to be sure it's dev->type is ARPHRD_6LOWPAN */
9static inline bool lowpan_is_ll(const struct net_device *dev,
10 enum lowpan_lltypes lltype)
11{
12 return lowpan_dev(dev)->lltype == lltype;
13}
14
Alexander Aringb1815fd2015-12-09 22:46:30 +010015#ifdef CONFIG_6LOWPAN_DEBUGFS
16int lowpan_dev_debugfs_init(struct net_device *dev);
17void lowpan_dev_debugfs_exit(struct net_device *dev);
18
19int __init lowpan_debugfs_init(void);
20void lowpan_debugfs_exit(void);
21#else
22static inline int lowpan_dev_debugfs_init(struct net_device *dev)
23{
24 return 0;
25}
26
27static inline void lowpan_dev_debugfs_exit(struct net_device *dev) { }
28
29static inline int __init lowpan_debugfs_init(void)
30{
31 return 0;
32}
33
34static inline void lowpan_debugfs_exit(void) { }
35#endif /* CONFIG_6LOWPAN_DEBUGFS */
36
37#endif /* __6LOWPAN_I_H */