4 #include <linux/netdevice.h>
6 #include <net/6lowpan.h>
8 /* caller need to be sure it's dev->type is ARPHRD_6LOWPAN */
9 static inline bool lowpan_is_ll(const struct net_device
*dev
,
10 enum lowpan_lltypes lltype
)
12 return lowpan_dev(dev
)->lltype
== lltype
;
15 #ifdef CONFIG_6LOWPAN_DEBUGFS
16 int lowpan_dev_debugfs_init(struct net_device
*dev
);
17 void lowpan_dev_debugfs_exit(struct net_device
*dev
);
19 int __init
lowpan_debugfs_init(void);
20 void lowpan_debugfs_exit(void);
22 static inline int lowpan_dev_debugfs_init(struct net_device
*dev
)
27 static inline void lowpan_dev_debugfs_exit(struct net_device
*dev
) { }
29 static inline int __init
lowpan_debugfs_init(void)
34 static inline void lowpan_debugfs_exit(void) { }
35 #endif /* CONFIG_6LOWPAN_DEBUGFS */
37 #endif /* __6LOWPAN_I_H */