dmbbf: don't call undefined functions

The function enabled_notify_check_value_change_param() calls these 2
functions that have no definition or decleration:

- add_list_value_change()
- send_active_value_change()

This commit comments them out.

Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
This commit is contained in:
Daniel Danzberger 2020-01-17 13:36:57 +01:00
parent fe370c6ae5
commit 2351a47144

View file

@ -1866,11 +1866,13 @@ static int enabled_notify_check_value_change_param(DMPARAM_ARGS)
return FAULT_9005;
}
(get_cmd)(refparam, dmctx, data, instance, &value);
#if 0
if (strcmp(value, dmctx->in_value) != 0) {
add_list_value_change(refparam, value, DMT_TYPE[type]);
if(dmctx->in_notification[0] =='2')
send_active_value_change();
}
#endif
dmfree(refparam);
return 0;
}