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