Merge tag 'v5.3-rc1' into docs-next
[linux-2.6-block.git] / net / 6lowpan / 6lowpan_i.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
b1815fd9
AA
2#ifndef __6LOWPAN_I_H
3#define __6LOWPAN_I_H
4
5#include <linux/netdevice.h>
6
27323631
AA
7#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
bbe5f5ce
AA
16extern const struct ndisc_ops lowpan_ndisc_ops;
17
18int addrconf_ifid_802154_6lowpan(u8 *eui, struct net_device *dev);
19
b1815fd9 20#ifdef CONFIG_6LOWPAN_DEBUGFS
db50450d 21void lowpan_dev_debugfs_init(struct net_device *dev);
b1815fd9
AA
22void lowpan_dev_debugfs_exit(struct net_device *dev);
23
db50450d 24void __init lowpan_debugfs_init(void);
b1815fd9
AA
25void lowpan_debugfs_exit(void);
26#else
db50450d 27static inline void lowpan_dev_debugfs_init(struct net_device *dev) { }
b1815fd9
AA
28static inline void lowpan_dev_debugfs_exit(struct net_device *dev) { }
29
db50450d 30static inline void __init lowpan_debugfs_init(void) { }
b1815fd9
AA
31static inline void lowpan_debugfs_exit(void) { }
32#endif /* CONFIG_6LOWPAN_DEBUGFS */
33
34#endif /* __6LOWPAN_I_H */