mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
tr181: wifi-openwrt: add missing functions
This fixes 'undefined reference' errors when linking for: - os_get_radio_operating_standard - os_get_wifi_access_point_status Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
This commit is contained in:
parent
d8438806f1
commit
7e0300b000
1 changed files with 12 additions and 0 deletions
|
|
@ -237,6 +237,12 @@ int os__get_access_point_associative_device_statistics_multiple_retry_count(char
|
|||
return not_implemented(value);
|
||||
}
|
||||
|
||||
/*#Device.WiFi.AccessPoint.{i}.Status!UBUS:wifi.ap.@Name/status//status*/
|
||||
int os_get_wifi_access_point_status (char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
return not_implemented(value);
|
||||
}
|
||||
|
||||
int os__get_radio_max_bit_rate (char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
return not_implemented(value);
|
||||
|
|
@ -326,6 +332,12 @@ int os__browseWifiNeighboringWiFiDiagnosticResultInst(struct dmctx *dmctx, DMNOD
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*#Device.WiFi.Radio.{i}.OperatingStandards!UBUS:wifi.radio.@Name/status//standard*/
|
||||
int os_get_radio_operating_standard(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
return not_implemented(value);
|
||||
}
|
||||
|
||||
int os__get_radio_supported_standard(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
return not_implemented(value);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue