1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __6LOWPAN_I_H 2 #ifndef __6LOWPAN_I_H 3 #define __6LOWPAN_I_H 3 #define __6LOWPAN_I_H 4 4 5 #include <linux/netdevice.h> 5 #include <linux/netdevice.h> 6 6 7 #include <net/6lowpan.h> 7 #include <net/6lowpan.h> 8 8 9 /* caller need to be sure it's dev->type is AR 9 /* caller need to be sure it's dev->type is ARPHRD_6LOWPAN */ 10 static inline bool lowpan_is_ll(const struct n 10 static inline bool lowpan_is_ll(const struct net_device *dev, 11 enum lowpan_ll 11 enum lowpan_lltypes lltype) 12 { 12 { 13 return lowpan_dev(dev)->lltype == llty 13 return lowpan_dev(dev)->lltype == lltype; 14 } 14 } 15 15 16 extern const struct ndisc_ops lowpan_ndisc_ops 16 extern const struct ndisc_ops lowpan_ndisc_ops; 17 17 18 int addrconf_ifid_802154_6lowpan(u8 *eui, stru 18 int addrconf_ifid_802154_6lowpan(u8 *eui, struct net_device *dev); 19 19 20 #ifdef CONFIG_6LOWPAN_DEBUGFS 20 #ifdef CONFIG_6LOWPAN_DEBUGFS 21 void lowpan_dev_debugfs_init(struct net_device !! 21 int lowpan_dev_debugfs_init(struct net_device *dev); 22 void lowpan_dev_debugfs_exit(struct net_device 22 void lowpan_dev_debugfs_exit(struct net_device *dev); 23 23 24 void __init lowpan_debugfs_init(void); !! 24 int __init lowpan_debugfs_init(void); 25 void lowpan_debugfs_exit(void); 25 void lowpan_debugfs_exit(void); 26 #else 26 #else 27 static inline void lowpan_dev_debugfs_init(str !! 27 static inline int lowpan_dev_debugfs_init(struct net_device *dev) >> 28 { >> 29 return 0; >> 30 } >> 31 28 static inline void lowpan_dev_debugfs_exit(str 32 static inline void lowpan_dev_debugfs_exit(struct net_device *dev) { } 29 33 30 static inline void __init lowpan_debugfs_init( !! 34 static inline int __init lowpan_debugfs_init(void) >> 35 { >> 36 return 0; >> 37 } >> 38 31 static inline void lowpan_debugfs_exit(void) { 39 static inline void lowpan_debugfs_exit(void) { } 32 #endif /* CONFIG_6LOWPAN_DEBUGFS */ 40 #endif /* CONFIG_6LOWPAN_DEBUGFS */ 33 41 34 #endif /* __6LOWPAN_I_H */ 42 #endif /* __6LOWPAN_I_H */ 35 43
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.