diff --git a/src/mgmt.c b/src/mgmt.c
index 943ce63..727fc13 100644
--- a/src/mgmt.c
+++ b/src/mgmt.c
handle_pending_uuids(index);
}
-static void mgmt_set_dev_class_complete(uint16_t index, void *buf, size_t len)
-{
- DBG("index %d", index);
-
- if (index > max_index) {
- error("Unexpected index %u in set_dev_class_complete event",
- index);
- return;
- }
-
- mgmt_update_cod(index, buf, len);
-}
-
static void mgmt_cmd_complete(uint16_t index, void *buf, size_t len)
{
struct mgmt_ev_cmd_complete *ev = buf;
mgmt_remove_uuid_complete(index, ev->data, len);
break;
case MGMT_OP_SET_DEV_CLASS:
- mgmt_set_dev_class_complete(index, ev->data, len);
+ DBG("set_dev_class complete");
break;
case MGMT_OP_LOAD_LINK_KEYS:
DBG("load_link_keys complete");