Bluetooth: BR/EDR: Rename BT_CONN_TYPE_BREDR

To conform to API convention rename BT_CONN_TYPE_BREDR to BT_CONN_TYPE_BR.
Updates stack code so far uses it.

Change-Id: Ia759ef68bbdb232e3b0992740e0536d310e19010
Signed-off-by: Arkadiusz Lichwa <arkadiusz.lichwa@tieto.com>
This commit is contained in:
Arkadiusz Lichwa 2015-12-07 10:03:05 +01:00 committed by Anas Nashif
commit db57e259a7
3 changed files with 4 additions and 4 deletions

View file

@ -102,7 +102,7 @@ const bt_addr_le_t *bt_conn_get_dst(const struct bt_conn *conn);
enum {
BT_CONN_TYPE_LE, /** LE Connection Type */
#if defined(CONFIG_BLUETOOTH_BREDR)
BT_CONN_TYPE_BREDR, /** BR/EDR Connection Type */
BT_CONN_TYPE_BR, /** BR/EDR Connection Type */
#endif
};