bluetooth: Removed deprecated bt_set_id_addr function

The function have been deprecated for 2 releases so remove the code
associated with it.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2021-06-11 09:20:40 -05:00 committed by Kumar Gala
commit 3f149f0828
3 changed files with 2 additions and 33 deletions

View file

@ -161,24 +161,6 @@ int bt_set_name(const char *name);
*/
const char *bt_get_name(void);
/**
* @brief Set the local Identity Address
*
* Allows setting the local Identity Address from the application.
* This API must be called before calling bt_enable(). Calling it at any
* other time will cause it to fail. In most cases the application doesn't
* need to use this API, however there are a few valid cases where
* it can be useful (such as for testing).
*
* At the moment, the given address must be a static random address. In the
* future support for public addresses may be added.
*
* @deprecated in 2.5 release, replace with bt_id_create before bt_enable.
*
* @return Zero on success or (negative) error code otherwise.
*/
__deprecated int bt_set_id_addr(const bt_addr_le_t *addr);
/**
* @brief Get the currently configured identities.
*