mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-03-06 17:40:35 +01:00
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:
parent
fe370c6ae5
commit
2351a47144
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue