From c2660d9bd21026b7b3c95f85a28bb56b3d41466c Mon Sep 17 00:00:00 2001 From: Gustavo Padovan Date: Wed, 4 Jul 2012 10:17:27 +0200 Subject: [PATCH] adapter_ops: remove disable_cod_cache mgmt handles the cache automatically. --- plugins/mgmtops.c | 9 --------- src/adapter.c | 2 -- src/adapter.h | 1 - 3 files changed, 12 deletions(-) diff --git a/plugins/mgmtops.c b/plugins/mgmtops.c index 16a97c9aa..0dde05ada 100644 --- a/plugins/mgmtops.c +++ b/plugins/mgmtops.c @@ -2194,14 +2194,6 @@ static int mgmt_set_did(int index, uint16_t vendor, uint16_t product, 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); @@ -2496,7 +2488,6 @@ static struct btd_adapter_ops mgmt_ops = { .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 f92287607..fb97fbb2e 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -2223,8 +2223,6 @@ void btd_adapter_start(struct btd_adapter *adapter) 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 b7ea62b9a..fbebd5c2a 100644 --- a/src/adapter.h +++ b/src/adapter.h @@ -206,7 +206,6 @@ struct btd_adapter_ops { 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); -- 2.47.3