USB: ene_usb6250: implement REQUEST SENSE
[linux-2.6/btrfs-unstable.git] / net / 6lowpan / 6lowpan_i.h
bloba67caee119290c6b6ebf090ac39fbd6845f3d476
1 #ifndef __6LOWPAN_I_H
2 #define __6LOWPAN_I_H
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 extern const struct ndisc_ops lowpan_ndisc_ops;
17 int addrconf_ifid_802154_6lowpan(u8 *eui, struct net_device *dev);
19 #ifdef CONFIG_6LOWPAN_DEBUGFS
20 int lowpan_dev_debugfs_init(struct net_device *dev);
21 void lowpan_dev_debugfs_exit(struct net_device *dev);
23 int __init lowpan_debugfs_init(void);
24 void lowpan_debugfs_exit(void);
25 #else
26 static inline int lowpan_dev_debugfs_init(struct net_device *dev)
28 return 0;
31 static inline void lowpan_dev_debugfs_exit(struct net_device *dev) { }
33 static inline int __init lowpan_debugfs_init(void)
35 return 0;
38 static inline void lowpan_debugfs_exit(void) { }
39 #endif /* CONFIG_6LOWPAN_DEBUGFS */
41 #endif /* __6LOWPAN_I_H */