net: rpl: Add checks for probing timer
The probing_timer is only available if CONFIG_NET_RPL_PROBING is defined. Change-Id: I2835d17e6c3d616f815f8beefd87d2571a5ad94c Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
961d7fc8f4
commit
dc9f8629b2
|
@ -1021,7 +1021,9 @@ static inline void net_rpl_instance_init(struct net_rpl_instance *instance,
|
|||
instance->is_used = true;
|
||||
|
||||
k_delayed_work_init(&instance->dio_timer, dio_timer);
|
||||
#if defined(CONFIG_NET_RPL_PROBING)
|
||||
k_delayed_work_init(&instance->probing_timer, rpl_probing_timer);
|
||||
#endif
|
||||
k_delayed_work_init(&instance->dao_lifetime_timer, dao_lifetime_timer);
|
||||
k_delayed_work_init(&instance->dao_timer, dao_send_timer);
|
||||
#if defined(CONFIG_NET_RPL_DAO_ACK)
|
||||
|
|
Loading…
Reference in New Issue