.. | .. |
---|
18 | 18 | int addrconf_ifid_802154_6lowpan(u8 *eui, struct net_device *dev); |
---|
19 | 19 | |
---|
20 | 20 | #ifdef CONFIG_6LOWPAN_DEBUGFS |
---|
21 | | -int lowpan_dev_debugfs_init(struct net_device *dev); |
---|
| 21 | +void lowpan_dev_debugfs_init(struct net_device *dev); |
---|
22 | 22 | void lowpan_dev_debugfs_exit(struct net_device *dev); |
---|
23 | 23 | |
---|
24 | | -int __init lowpan_debugfs_init(void); |
---|
| 24 | +void __init lowpan_debugfs_init(void); |
---|
25 | 25 | void lowpan_debugfs_exit(void); |
---|
26 | 26 | #else |
---|
27 | | -static inline int lowpan_dev_debugfs_init(struct net_device *dev) |
---|
28 | | -{ |
---|
29 | | - return 0; |
---|
30 | | -} |
---|
31 | | - |
---|
| 27 | +static inline void lowpan_dev_debugfs_init(struct net_device *dev) { } |
---|
32 | 28 | static inline void lowpan_dev_debugfs_exit(struct net_device *dev) { } |
---|
33 | 29 | |
---|
34 | | -static inline int __init lowpan_debugfs_init(void) |
---|
35 | | -{ |
---|
36 | | - return 0; |
---|
37 | | -} |
---|
38 | | - |
---|
| 30 | +static inline void __init lowpan_debugfs_init(void) { } |
---|
39 | 31 | static inline void lowpan_debugfs_exit(void) { } |
---|
40 | 32 | #endif /* CONFIG_6LOWPAN_DEBUGFS */ |
---|
41 | 33 | |
---|