blob: 53cf446ce2e3a5666b2b39b7a1084db69ca5e0c0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Alexander Aringb1815fd2015-12-09 22:46:30 +01002#ifndef __6LOWPAN_I_H
3#define __6LOWPAN_I_H
4
5#include <linux/netdevice.h>
6
Alexander Aring27323632016-04-11 11:04:23 +02007#include <net/6lowpan.h>
8
9/* caller need to be sure it's dev->type is ARPHRD_6LOWPAN */
10static inline bool lowpan_is_ll(const struct net_device *dev,
11 enum lowpan_lltypes lltype)
12{
13 return lowpan_dev(dev)->lltype == lltype;
14}
15
Alexander Aringbbe5f5c2016-06-15 21:20:25 +020016extern const struct ndisc_ops lowpan_ndisc_ops;
17
18int addrconf_ifid_802154_6lowpan(u8 *eui, struct net_device *dev);
19
Alexander Aringb1815fd2015-12-09 22:46:30 +010020#ifdef CONFIG_6LOWPAN_DEBUGFS
21int lowpan_dev_debugfs_init(struct net_device *dev);
22void lowpan_dev_debugfs_exit(struct net_device *dev);
23
24int __init lowpan_debugfs_init(void);
25void lowpan_debugfs_exit(void);
26#else
27static inline int lowpan_dev_debugfs_init(struct net_device *dev)
28{
29 return 0;
30}
31
32static inline void lowpan_dev_debugfs_exit(struct net_device *dev) { }
33
34static inline int __init lowpan_debugfs_init(void)
35{
36 return 0;
37}
38
39static inline void lowpan_debugfs_exit(void) { }
40#endif /* CONFIG_6LOWPAN_DEBUGFS */
41
42#endif /* __6LOWPAN_I_H */