diff --git a/plugins/mgmtops.c b/plugins/mgmtops.c
index 16a97c9..0dde05a 100644
--- a/plugins/mgmtops.c
+++ b/plugins/mgmtops.c
return 0;
}
-static int mgmt_disable_cod_cache(int index)
-{
- DBG("index %d", index);
-
- /* The cache control is handled automatically for mgmt */
- return 0;
-}
-
static int mgmt_restore_powered(int index)
{
DBG("index %d", index);
.set_did = mgmt_set_did,
.add_uuid = mgmt_add_uuid,
.remove_uuid = mgmt_remove_uuid,
- .disable_cod_cache = mgmt_disable_cod_cache,
.restore_powered = mgmt_restore_powered,
.load_keys = mgmt_load_link_keys,
.set_io_capability = mgmt_set_io_capability,
diff --git a/src/adapter.c b/src/adapter.c
index f922876..fb97fbb 100644
--- a/src/adapter.c
+++ b/src/adapter.c
call_adapter_powered_callbacks(adapter, TRUE);
- adapter_ops->disable_cod_cache(adapter->dev_id);
-
info("Adapter %s has been enabled", adapter->path);
}
diff --git a/src/adapter.h b/src/adapter.h
index b7ea62b..fbebd5c 100644
--- a/src/adapter.h
+++ b/src/adapter.h
uint16_t version, uint16_t source);
int (*add_uuid) (int index, uuid_t *uuid, uint8_t svc_hint);
int (*remove_uuid) (int index, uuid_t *uuid);
- int (*disable_cod_cache) (int index);
int (*restore_powered) (int index);
int (*load_keys) (int index, GSList *keys, gboolean debug_keys);
int (*set_io_capability) (int index, uint8_t io_capability);